fix:门店账户新增字段

This commit is contained in:
wangff
2025-11-25 18:07:46 +08:00
parent c3f00b4a1f
commit ec43537f66
2 changed files with 7 additions and 1 deletions

View File

@@ -77,4 +77,7 @@ public class AccountInfoDTO {
@ApiModelProperty("钱包类型 1平安 2网商") @ApiModelProperty("钱包类型 1平安 2网商")
private Integer walletType; private Integer walletType;
@ApiModelProperty("失败原因(仅网商在创建失败或激活失败时返回)")
private String errMsg;
} }

View File

@@ -40,6 +40,9 @@ public class AccountInfoVO {
@ApiModelProperty(value = "打标状态 0 未打标 1 已打标") @ApiModelProperty(value = "打标状态 0 未打标 1 已打标")
private Integer labelingStatus; private Integer labelingStatus;
@ApiModelProperty("平安账户升级/网商开通失败原因") @ApiModelProperty("平安账户升级失败原因")
private String failReason; private String failReason;
@ApiModelProperty("失败原因(仅网商在创建失败或激活失败时返回)")
private String errMsg;
} }