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
d878f8f1
Commit
d878f8f1
authored
Jan 06, 2026
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
push
parent
fd7f918a
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
19 additions
and
19 deletions
+19
-19
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiAppointmentInfoDto.java
+2
-2
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiInsurantInfoDto.java
+2
-2
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiPolicyholderInfoDto.java
+2
-2
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiProductPlanMainInfoDto.java
+3
-3
yd-csf-service/src/main/java/com/yd/csf/service/model/Appointment.java
+3
-3
yd-csf-service/src/main/java/com/yd/csf/service/model/Insurant.java
+2
-2
yd-csf-service/src/main/java/com/yd/csf/service/model/Policyholder.java
+2
-2
yd-csf-service/src/main/java/com/yd/csf/service/model/ProductPlan.java
+3
-3
No files found.
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiAppointmentInfoDto.java
View file @
d878f8f1
...
...
@@ -173,12 +173,12 @@ public class ApiAppointmentInfoDto {
/**
* 是否有第二持有人
*/
private
String
isSecond
;
private
Integer
isSecond
;
/**
* 转介人是否陪同
*/
private
String
isReferrerAccompany
;
private
Integer
isReferrerAccompany
;
/**
* 创建人用户名
...
...
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiInsurantInfoDto.java
View file @
d878f8f1
...
...
@@ -114,7 +114,7 @@ public class ApiInsurantInfoDto {
/**
* 是否拥有其他国家公民身份(如美国、日本等): 0-否, 1-是(字典)
*/
private
String
isOtherCountry
;
private
Integer
isOtherCountry
;
/**
* 吸烟情况(字典)
...
...
@@ -138,7 +138,7 @@ public class ApiInsurantInfoDto {
* 是否退休(字典)
*/
@NotBlank
(
message
=
"受保人-是否退休不能为空"
,
groups
=
GroupValid
.
NotSelf
.
class
)
private
String
isRetirement
;
private
Integer
isRetirement
;
/**
* 退休年龄(如已退休,再显示)
...
...
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiPolicyholderInfoDto.java
View file @
d878f8f1
...
...
@@ -107,7 +107,7 @@ public class ApiPolicyholderInfoDto {
/**
* 是否拥有其他国家公民身份(如美国、日本等): 0-否, 1-是(字典)
*/
private
String
isOtherCountry
;
private
Integer
isOtherCountry
;
/**
* 吸烟情况(字典)
...
...
@@ -131,7 +131,7 @@ public class ApiPolicyholderInfoDto {
* 是否退休(字典)
*/
@NotBlank
(
message
=
"投保人-是否退休不能为空"
)
private
String
isRetirement
;
private
Integer
isRetirement
;
/**
* 退休年龄(如已退休,再显示)
...
...
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiProductPlanMainInfoDto.java
View file @
d878f8f1
...
...
@@ -90,12 +90,12 @@ public class ApiProductPlanMainInfoDto {
/**
* 是否预缴保费: 0-否, 1-是(字典)
*/
private
String
isPrepay
;
private
Integer
isPrepay
;
/**
* 是否追溯: 0-否, 1-是(字典)
*/
private
String
isTraceable
;
private
Integer
isTraceable
;
/**
* 保单日期回溯: 0-否, 1-是(字典)
...
...
@@ -105,7 +105,7 @@ public class ApiProductPlanMainInfoDto {
/**
* 是否参加递增保障权益: 0-否, 1-是(字典)
*/
private
String
isJoin
;
private
Integer
isJoin
;
/**
* 红利分配方式(字典)
...
...
yd-csf-service/src/main/java/com/yd/csf/service/model/Appointment.java
View file @
d878f8f1
...
...
@@ -313,19 +313,19 @@ public class Appointment implements Serializable {
* 是否法定受益人
*/
@TableField
(
"is_legal_beneficiary"
)
private
String
isLegalBeneficiary
;
private
Integer
isLegalBeneficiary
;
/**
* 转介人是否陪同
*/
@TableField
(
"is_referrer_accompany"
)
private
String
isReferrerAccompany
;
private
Integer
isReferrerAccompany
;
/**
* 是否有第二持有人
*/
@TableField
(
"is_second"
)
private
String
isSecond
;
private
Integer
isSecond
;
/**
* 通用备注
...
...
yd-csf-service/src/main/java/com/yd/csf/service/model/Insurant.java
View file @
d878f8f1
...
...
@@ -117,7 +117,7 @@ public class Insurant implements Serializable {
* 是否拥有其他国家公民身份(如美国、日本等): 0-否, 1-是(字典)
*/
@TableField
(
"is_other_country"
)
private
String
isOtherCountry
;
private
Integer
isOtherCountry
;
/**
* 吸烟情况(字典)
...
...
@@ -141,7 +141,7 @@ public class Insurant implements Serializable {
* 是否退休(字典)
*/
@TableField
(
"is_retirement"
)
private
String
isRetirement
;
private
Integer
isRetirement
;
/**
* 退休年龄(如已退休,再显示)
...
...
yd-csf-service/src/main/java/com/yd/csf/service/model/Policyholder.java
View file @
d878f8f1
...
...
@@ -110,7 +110,7 @@ public class Policyholder implements Serializable {
* 是否拥有其他国家公民身份(如美国、日本等): 0-否, 1-是(字典)
*/
@TableField
(
"is_other_country"
)
private
String
isOtherCountry
;
private
Integer
isOtherCountry
;
/**
* 吸烟情况(字典)
...
...
@@ -134,7 +134,7 @@ public class Policyholder implements Serializable {
* 是否退休(字典)
*/
@TableField
(
"is_retirement"
)
private
String
isRetirement
;
private
Integer
isRetirement
;
/**
* 退休年龄(如已退休,再显示)
...
...
yd-csf-service/src/main/java/com/yd/csf/service/model/ProductPlan.java
View file @
d878f8f1
...
...
@@ -132,13 +132,13 @@ public class ProductPlan implements Serializable {
* 是否预缴保费: 0-否, 1-是(字典)
*/
@TableField
(
"is_prepay"
)
private
String
isPrepay
;
private
Integer
isPrepay
;
/**
* 是否追溯: 0-否, 1-是(字典)
*/
@TableField
(
"is_traceable"
)
private
String
isTraceable
;
private
Integer
isTraceable
;
/**
* 保单日期回溯: 0-否, 1-是(字典)
...
...
@@ -150,7 +150,7 @@ public class ProductPlan implements Serializable {
* 是否参加递增保障权益: 0-否, 1-是(字典)
*/
@TableField
(
"is_join"
)
private
String
isJoin
;
private
Integer
isJoin
;
/**
* 红利分配方式(字典)
...
...
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