public enum AccountSignState extends Enum<AccountSignState>
Enum Constant and Description |
---|
NOT_SIGNABLE
不可签约。该状态下,暂不支持超级管理员签约。一般为申请单处于已驳回、已冻结、机器校验中状态,无法签约
|
SIGNED
已签约。指二级商户的超级管理员已完成签约。注意:若申请单被驳回,商户修改了商户主体名称、法人名称、超级管理员信息、主体类型等信息,则需重新签约
|
UNSIGNED
未签约。该状态下,电商平台可查询获取签约链接,引导二级商户的超级管理员完成签约
|
Modifier and Type | Method and Description |
---|---|
static AccountSignState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountSignState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountSignState UNSIGNED
public static final AccountSignState SIGNED
public static final AccountSignState NOT_SIGNABLE
public static AccountSignState[] values()
for (AccountSignState c : AccountSignState.values()) System.out.println(c);
public static AccountSignState valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2025. All rights reserved.