This commit is contained in:
zhangchenbiao
2024-05-15 15:40:20 +08:00
parent a973ef9364
commit 84cb1af364
3 changed files with 8 additions and 4 deletions

View File

@@ -15,7 +15,11 @@ public class IsSubmitOpenNewShopVO {
@ApiModelProperty("是否可以开新店 true:可以开店 false:不能开新店")
private Boolean isSubmitOpenNewShop;
public IsSubmitOpenNewShopVO(Boolean isSubmitOpenNewShop) {
@ApiModelProperty("审核状态 0待审核 1通过 2不通过")
private Integer auditResult;
public IsSubmitOpenNewShopVO(Boolean isSubmitOpenNewShop, Integer auditResult) {
this.isSubmitOpenNewShop = isSubmitOpenNewShop;
this.auditResult = auditResult;
}
}