Skip to content

Commit

Permalink
🎨 ApplymentsStatusResult添加signState签约状态字段
Browse files Browse the repository at this point in the history
  • Loading branch information
mrning authored Jul 3, 2021
1 parent b2eaa59 commit dc7bcc0
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,22 @@ public class ApplymentsStatusResult implements Serializable {
@SerializedName(value = "sign_url")
private String signUrl;

/**
* <pre>
* 字段名:签约状态
* 变量名:sign_state
* 是否必填:否
* 类型:string(16)
* 描述:
* 1、UNSIGNED:未签约。该状态下,电商平台可查询获取签约链接,引导二级商户的超级管理员完成签约;
* 2、SIGNED :已签约。指二级商户的超级管理员已完成签约。注意:若申请单被驳回,商户修改了商户主体名称、法人名称、超级管理员信息、主体类型等信息,则需重新签约。
* 3、NOT_SIGNABLE:不可签约。该状态下,暂不支持超级管理员签约。一般为申请单处于已驳回、已冻结、机器校验中状态,无法签约。
* 示例值:https://pay.weixin.qq.com/public/apply4ec_sign/s?applymentId=2000002126198476&sign=b207b673049a32c858f3aabd7d27c7ec
* </pre>
*/
@SerializedName(value = "sign_state")
private String signState;

/**
* <pre>
* 字段名:电商平台二级商户号
Expand Down

0 comments on commit dc7bcc0

Please sign in to comment.