This commit is contained in:
shuo.wang
2025-04-16 13:11:57 +08:00
parent f9b6f72d92
commit 2d758f13ed
9 changed files with 72 additions and 10 deletions

View File

@@ -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;
}

View File

@@ -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;

View File

@@ -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("审批人")