Commit d0083b0a by zhangxingmin

push

parent 76054f58
......@@ -106,7 +106,7 @@ public class ApiAppointmentInfoDto {
/**
* 是否开户: 0-否, 1-是(字典)
*/
private Integer isOpenAccount;
private Integer isOpenAccount = 0;
/**
* 开户行名称
......@@ -153,12 +153,12 @@ public class ApiAppointmentInfoDto {
/**
* 是否体检: 0-否, 1-是(字典)
*/
private Integer isTj;
private Integer isTj = 0;
/**
* 是否购买过香港保险: 0-否, 1-是(字典)
*/
private Integer isBuy;
private Integer isBuy = 0;
/**
* 转保声明选项: 0-否, 1-是 2-尚未決定(字典)
......@@ -168,17 +168,17 @@ public class ApiAppointmentInfoDto {
/**
* 是否有用车服务:0-否, 1-是(字典)
*/
private Integer isUseCar;
private Integer isUseCar = 0;
/**
* 是否有第二持有人
*/
private Integer isSecond;
private Integer isSecond = 0;
/**
* 转介人是否陪同
*/
private Integer isReferrerAccompany;
private Integer isReferrerAccompany = 0;
/**
* 创建人用户名
......
......@@ -13,7 +13,7 @@ public class ApiBeneficiaryInfoFzDto {
* 是否法定受益人
*/
@NotNull(message = "受益人-是否法定受益人不能为空")
private Integer isLegalBeneficiary;
private Integer isLegalBeneficiary = 0;
/**
* 受益人列表信息
......
......@@ -114,7 +114,7 @@ public class ApiInsurantInfoDto {
/**
* 是否拥有其他国家公民身份(如美国、日本等): 0-否, 1-是(字典)
*/
private Integer isOtherCountry;
private Integer isOtherCountry = 0;
/**
* 吸烟情况(字典)
......@@ -138,7 +138,7 @@ public class ApiInsurantInfoDto {
* 是否退休(字典)
*/
// @NotNull(message = "受保人-是否退休不能为空", groups = GroupValid.NotSelf.class)
private Integer isRetirement;
private Integer isRetirement = 0;
/**
* 退休年龄(如已退休,再显示)
......@@ -168,7 +168,7 @@ public class ApiInsurantInfoDto {
/**
* 受供养人数目(通过FNA带入)
*/
private Integer dependentsNum;
private Integer dependentsNum = 0;
//-- 以下是联系信息
/**
......
......@@ -107,7 +107,7 @@ public class ApiPolicyholderInfoDto {
/**
* 是否拥有其他国家公民身份(如美国、日本等): 0-否, 1-是(字典)
*/
private Integer isOtherCountry;
private Integer isOtherCountry = 0;
/**
* 吸烟情况(字典)
......@@ -131,7 +131,7 @@ public class ApiPolicyholderInfoDto {
* 是否退休(字典)
*/
// @NotNull(message = "投保人-是否退休不能为空")
private Integer isRetirement;
private Integer isRetirement = 0;
/**
* 退休年龄(如已退休,再显示)
......@@ -161,7 +161,7 @@ public class ApiPolicyholderInfoDto {
/**
* 受供养人数目(通过FNA带入)
*/
private Integer dependentsNum;
private Integer dependentsNum = 0;
//-- 以下是联系信息
/**
......@@ -334,4 +334,6 @@ public class ApiPolicyholderInfoDto {
* 税务信息列表
*/
private List<ApiTaxationDto> apiTaxationDtoList;
}
......@@ -107,17 +107,17 @@ public class ApiProductPlanMainInfoDto {
/**
* 是否预缴保费: 0-否, 1-是(字典)
*/
private Integer isPrepay;
private Integer isPrepay = 0;
/**
* 预缴年期
*/
private Integer prepaymentPeriod;
private Integer prepaymentPeriod = 0;
/**
* 是否追溯: 0-否, 1-是(字典)
*/
private Integer isTraceable;
private Integer isTraceable = 0;
/**
* 回溯日期
......@@ -128,7 +128,7 @@ public class ApiProductPlanMainInfoDto {
/**
* 是否参加递增保障权益: 0-否, 1-是(字典)
*/
private Integer isJoin;
private Integer isJoin = 0;
/**
* 红利分配方式(字典)
......
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