Commit 233bf77c by zhangxingmin

push

parent 070747aa
...@@ -49,4 +49,14 @@ public class ApiAppointmentUserSignDto { ...@@ -49,4 +49,14 @@ public class ApiAppointmentUserSignDto {
* 邮箱 * 邮箱
*/ */
private String email; private String email;
/**
* 签约公司ID(对账公司)
*/
private String contractingCompanyId;
/**
* 签约公司名称(对账公司)
*/
private String contractingCompanyName;
} }
...@@ -62,13 +62,11 @@ public class ApiInsurantInfoDto { ...@@ -62,13 +62,11 @@ public class ApiInsurantInfoDto {
/** /**
* 证件类型(字典,下拉选择) * 证件类型(字典,下拉选择)
*/ */
@NotBlank(message = "受保人-证件类型不能为空", groups = GroupValid.NotSelf.class)
private String documentType; private String documentType;
/** /**
* 证件号码 * 证件号码
*/ */
@NotBlank(message = "受保人-证件号码不能为空", groups = GroupValid.NotSelf.class)
private String idNumber; private String idNumber;
/** /**
......
...@@ -55,13 +55,11 @@ public class ApiPolicyholderInfoDto { ...@@ -55,13 +55,11 @@ public class ApiPolicyholderInfoDto {
/** /**
* 证件类型(字典,下拉选择) * 证件类型(字典,下拉选择)
*/ */
@NotBlank(message = "投保人-证件类型不能为空")
private String documentType; private String documentType;
/** /**
* 证件号码 * 证件号码
*/ */
@NotBlank(message = "投保人-证件号码不能为空")
private String idNumber; private String idNumber;
/** /**
......
...@@ -88,6 +88,18 @@ public class AppointmentUserSign implements Serializable { ...@@ -88,6 +88,18 @@ public class AppointmentUserSign implements Serializable {
private String email; private String email;
/** /**
* 签约公司ID(对账公司)
*/
@TableField("contracting_company_id")
private String contractingCompanyId;
/**
* 签约公司名称(对账公司)
*/
@TableField("contracting_company_name")
private String contractingCompanyName;
/**
* 通用备注 * 通用备注
*/ */
@TableField("remark") @TableField("remark")
......
...@@ -88,6 +88,18 @@ public class AppointmentUserSignLog implements Serializable { ...@@ -88,6 +88,18 @@ public class AppointmentUserSignLog implements Serializable {
private String email; private String email;
/** /**
* 签约公司ID(对账公司)
*/
@TableField("contracting_company_id")
private String contractingCompanyId;
/**
* 签约公司名称(对账公司)
*/
@TableField("contracting_company_name")
private String contractingCompanyName;
/**
* 通用备注 * 通用备注
*/ */
@TableField("remark") @TableField("remark")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment