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
5bd40c00
Commit
5bd40c00
authored
Jan 23, 2026
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
push
parent
12cf4403
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiAppointmentServiceImpl.java
+3
-3
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/excel/ApiExcelImportAppointmentDto.java
+2
-2
No files found.
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiAppointmentServiceImpl.java
View file @
5bd40c00
...
@@ -684,7 +684,7 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
...
@@ -684,7 +684,7 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
follow
.
setInsured
(
follow
.
getPolicyHolder
());
follow
.
setInsured
(
follow
.
getPolicyHolder
());
}
}
// 受保人年龄
// 受保人年龄
if
(
apiInsurantInfoDto
.
getAge
()
!=
null
)
{
if
(
StringUtils
.
isNotBlank
(
apiInsurantInfoDto
.
getAge
())
)
{
follow
.
setInsuredAge
(
Integer
.
valueOf
(
apiInsurantInfoDto
.
getAge
()));
follow
.
setInsuredAge
(
Integer
.
valueOf
(
apiInsurantInfoDto
.
getAge
()));
}
}
}
}
...
@@ -716,11 +716,11 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
...
@@ -716,11 +716,11 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
// 币种
// 币种
follow
.
setPolicyCurrency
(
apiProductPlanMainInfoDto
.
getPolicyCurrency
());
follow
.
setPolicyCurrency
(
apiProductPlanMainInfoDto
.
getPolicyCurrency
());
// 供款年期
// 供款年期
if
(
apiProductPlanMainInfoDto
.
getIssueNumber
()
!=
null
)
{
if
(
StringUtils
.
isNotBlank
(
apiProductPlanMainInfoDto
.
getIssueNumber
())
)
{
follow
.
setIssueNumber
(
Integer
.
parseInt
(
apiProductPlanMainInfoDto
.
getIssueNumber
()));
follow
.
setIssueNumber
(
Integer
.
parseInt
(
apiProductPlanMainInfoDto
.
getIssueNumber
()));
}
}
// 保障期限
// 保障期限
if
(
apiProductPlanMainInfoDto
.
getGuaranteePeriod
()
!=
null
)
{
if
(
StringUtils
.
isNotBlank
(
apiProductPlanMainInfoDto
.
getGuaranteePeriod
())
)
{
follow
.
setGuaranteePeriod
(
Integer
.
parseInt
(
apiProductPlanMainInfoDto
.
getGuaranteePeriod
()));
follow
.
setGuaranteePeriod
(
Integer
.
parseInt
(
apiProductPlanMainInfoDto
.
getGuaranteePeriod
()));
}
}
// 保额(重疾险)
// 保额(重疾险)
...
...
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/excel/ApiExcelImportAppointmentDto.java
View file @
5bd40c00
...
@@ -511,8 +511,8 @@ public class ApiExcelImportAppointmentDto {
...
@@ -511,8 +511,8 @@ public class ApiExcelImportAppointmentDto {
infoDto
.
setArrivalTime
(
DateUtil
.
getLocalDateTime
(
dto
.
getHkArrivalTime
()));
infoDto
.
setArrivalTime
(
DateUtil
.
getLocalDateTime
(
dto
.
getHkArrivalTime
()));
//业务编号->介绍人编号 TODO
//业务编号->介绍人编号 TODO
// infoDto.setBusinessNo(dto.getMainReferrerId());
// infoDto.setBusinessNo(dto.getMainReferrerId());
//
确定预约时间
->预约日期 (西元 年/月/日) + 預約時間
//
签单日
->预约日期 (西元 年/月/日) + 預約時間
// infoDto.setConfirmAppointmentTim
e(DateUtil.getLocalDateTime(dto.getMainIntentionAppointmentDate() + " " + dto.getMainIntentionAppointmentTime()));
infoDto
.
setSignDat
e
(
DateUtil
.
getLocalDateTime
(
dto
.
getMainIntentionAppointmentDate
()
+
" "
+
dto
.
getMainIntentionAppointmentTime
()));
//离港时间->离港(澳)日期及时间(离港时间)(预约信息主表)
//离港时间->离港(澳)日期及时间(离港时间)(预约信息主表)
infoDto
.
setDepartureTime
(
DateUtil
.
getLocalDateTime
(
dto
.
getHkDepartureTime
()));
infoDto
.
setDepartureTime
(
DateUtil
.
getLocalDateTime
(
dto
.
getHkDepartureTime
()));
//客户在港期间联络电话->客户在港期间联络电话(预约信息主表)区号+号码
//客户在港期间联络电话->客户在港期间联络电话(预约信息主表)区号+号码
...
...
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