fix
This commit is contained in:
@@ -85,5 +85,6 @@ public class LicenseTransactDO {
|
||||
private Integer twoCertificatesOne;
|
||||
@Column(name = "sync_flag")
|
||||
private Integer syncFlag;
|
||||
|
||||
@Column(name = "legal_is_same_partner")
|
||||
private Boolean legalIsSamePartner;
|
||||
}
|
||||
|
||||
@@ -5,6 +5,7 @@ import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import java.util.Date;
|
||||
import java.util.Objects;
|
||||
|
||||
@@ -54,6 +55,10 @@ public class BusinessLicenseRequest {
|
||||
@ApiModelProperty("0:保存 1:提交到待审核")
|
||||
private Integer submitStatus;
|
||||
|
||||
@ApiModelProperty("法人身份证信息是否和加盟商一致,false否,true是")
|
||||
@NotNull
|
||||
private Boolean legalIsSamePartner;
|
||||
|
||||
@ApiModelProperty("法人身份证号码")
|
||||
@NotBlank(message = "法人身份证号码不能为空")
|
||||
private String licenseLegalIdCardNo;
|
||||
|
||||
@@ -17,20 +17,19 @@ import java.util.Objects;
|
||||
@Data
|
||||
public class SubmitLicenseResponse {
|
||||
|
||||
@ApiModelProperty("法人身份证信息是否和加盟商一致,false否,true是")
|
||||
private Boolean legalIsSamePartner;
|
||||
|
||||
@ApiModelProperty("法人身份证号码")
|
||||
@NotBlank(message = "法人身份证号码不能为空")
|
||||
private String licenseLegalIdCardNo;
|
||||
|
||||
@ApiModelProperty("法人身份证正面")
|
||||
@NotBlank(message = "法人身份证正面不能为空")
|
||||
private String licenseLegalIdCardFront;
|
||||
|
||||
@ApiModelProperty("法人身份证反面")
|
||||
@NotBlank(message = "法人身份证反面不能为空")
|
||||
private String licenseLegalIdCardBack;
|
||||
|
||||
@ApiModelProperty("法人手机号")
|
||||
@NotBlank(message = "法人手机号不能为空")
|
||||
private String licenseLegalMobile;
|
||||
|
||||
@ApiModelProperty("审批人")
|
||||
|
||||
Reference in New Issue
Block a user