This commit is contained in:
wxp01309236
2023-06-16 16:25:35 +08:00
parent b01f6da18b
commit a5ae55675a
2 changed files with 9 additions and 6 deletions

View File

@@ -43,6 +43,9 @@ public class PartnerUserInfoVO {
@ApiModelProperty("邀请码")
private String inviteCode;
@ApiModelProperty("是否填写加盟需知")
private Integer isWritePartnerKnow;
@ApiModelProperty("openid")
private String openid;
@@ -50,15 +53,17 @@ public class PartnerUserInfoVO {
private String unionId;
@ApiModelProperty("是否需要提交意向信息")
private Boolean isNeedSubmitWantInfo;
private Boolean needSubmitWantInfo;
public Boolean getNeedSubmitWantInfo() {
if(StringUtils.isBlank(username)
|| StringUtils.isBlank(mobile)
|| StringUtils.isBlank(liveArea)
|| StringUtils.isBlank(wantShopArea)){
|| StringUtils.isBlank(wantShopArea)
|| Objects.isNull(acceptAdjustType)){
return true;
}
return false;
}
}