fix:打标失败处理

This commit is contained in:
wangff
2025-11-18 18:44:10 +08:00
parent 9ae993c248
commit ac5a06bdad
8 changed files with 52 additions and 5 deletions

View File

@@ -71,4 +71,7 @@ public class AccountInfoDTO {
@ApiModelProperty("工商类型 1.企业 2.个体工商户 3.小微商户(自然人)")
private Integer businessType;
@ApiModelProperty("钱包类型 1平安 2网商")
private Integer walletType;
}

View File

@@ -17,5 +17,6 @@ public class AddTagCallbackNoticeRequest {
private Integer status;
@ApiModelProperty(name = "1.法人 2.非法人", required = true)
private Integer addTagType;
@ApiModelProperty(name = "失败原因")
private String errorMsg;
}

View File

@@ -18,4 +18,7 @@ public class StoreShopRequest {
@ApiModelProperty("门店id两者取一")
private String storeId;
@ApiModelProperty("钱包类型 1平安 2网商")
private Integer walletType;
}

View File

@@ -36,4 +36,7 @@ public class AccountInfoVO {
@ApiModelProperty(value = "打标状态 0 未打标 1 已打标")
private Integer labelingStatus;
@ApiModelProperty("账户升级失败原因")
private String failReason;
}