Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-csf
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xingmin
yd-csf
Commits
d0083b0a
Commit
d0083b0a
authored
Feb 02, 2026
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
push
parent
76054f58
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
17 deletions
+19
-17
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiAppointmentInfoDto.java
+6
-6
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiBeneficiaryInfoFzDto.java
+1
-1
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiInsurantInfoDto.java
+3
-3
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiPolicyholderInfoDto.java
+5
-3
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiProductPlanMainInfoDto.java
+4
-4
No files found.
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiAppointmentInfoDto.java
View file @
d0083b0a
...
...
@@ -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
;
/**
* 创建人用户名
...
...
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiBeneficiaryInfoFzDto.java
View file @
d0083b0a
...
...
@@ -13,7 +13,7 @@ public class ApiBeneficiaryInfoFzDto {
* 是否法定受益人
*/
@NotNull
(
message
=
"受益人-是否法定受益人不能为空"
)
private
Integer
isLegalBeneficiary
;
private
Integer
isLegalBeneficiary
=
0
;
/**
* 受益人列表信息
...
...
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiInsurantInfoDto.java
View file @
d0083b0a
...
...
@@ -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
;
//-- 以下是联系信息
/**
...
...
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiPolicyholderInfoDto.java
View file @
d0083b0a
...
...
@@ -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
;
}
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiProductPlanMainInfoDto.java
View file @
d0083b0a
...
...
@@ -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
;
/**
* 红利分配方式(字典)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment