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
bb53bfbe
Commit
bb53bfbe
authored
May 09, 2026
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
push
parent
8ece8bef
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
.idea/encodings.xml
+0
-1
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiAppointmentServiceImpl.java
+2
-2
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/PolicyPolicyholderServiceImpl.java
+1
-1
No files found.
.idea/encodings.xml
View file @
bb53bfbe
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
<project
version=
"4"
>
<project
version=
"4"
>
<component
name=
"Encoding"
>
<component
name=
"Encoding"
>
<file
url=
"file://$PROJECT_DIR$/src/main/java"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/src/main/java"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/src/main/resources"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/yd-csf-api/src/main/java"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/yd-csf-api/src/main/java"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/yd-csf-api/src/main/resources"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/yd-csf-api/src/main/resources"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/yd-csf-feign/src/main/java"
charset=
"UTF-8"
/>
<file
url=
"file://$PROJECT_DIR$/yd-csf-feign/src/main/java"
charset=
"UTF-8"
/>
...
...
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiAppointmentServiceImpl.java
View file @
bb53bfbe
...
@@ -951,7 +951,7 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
...
@@ -951,7 +951,7 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
policyInsurant
.
setName
(
apiInsurantInfoDto
.
getNameCn
());
policyInsurant
.
setName
(
apiInsurantInfoDto
.
getNameCn
());
policyInsurant
.
setNameEn
(
apiInsurantInfoDto
.
getNamePyEn
());
policyInsurant
.
setNameEn
(
apiInsurantInfoDto
.
getNamePyEn
());
policyInsurant
.
setNameSc
(
ChineseTextConverter
.
traditionalToSimplified
(
apiInsurantInfoDto
.
getNameCn
()));
policyInsurant
.
setNameSc
(
ChineseTextConverter
.
traditionalToSimplified
(
apiInsurantInfoDto
.
getNameCn
()));
policyInsurant
.
setNameEnLc
(
EnglishTextUtil
.
toLowerCaseSafe
Safe
(
apiInsurantInfoDto
.
getNamePyEn
()));
policyInsurant
.
setNameEnLc
(
EnglishTextUtil
.
toLowerCaseSafe
(
apiInsurantInfoDto
.
getNamePyEn
()));
return
policyInsurantService
.
saveOrUpdate
(
policyInsurant
);
return
policyInsurantService
.
saveOrUpdate
(
policyInsurant
);
}
}
...
@@ -971,7 +971,7 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
...
@@ -971,7 +971,7 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
policyPolicyholder
.
setName
(
apiPolicyholderInfoDto
.
getNameCn
());
policyPolicyholder
.
setName
(
apiPolicyholderInfoDto
.
getNameCn
());
policyPolicyholder
.
setNameEn
(
apiPolicyholderInfoDto
.
getNamePyEn
());
policyPolicyholder
.
setNameEn
(
apiPolicyholderInfoDto
.
getNamePyEn
());
policyPolicyholder
.
setNameSc
(
ChineseTextConverter
.
traditionalToSimplified
(
apiPolicyholderInfoDto
.
getNameCn
()));
policyPolicyholder
.
setNameSc
(
ChineseTextConverter
.
traditionalToSimplified
(
apiPolicyholderInfoDto
.
getNameCn
()));
policyPolicyholder
.
setNameEnLc
(
EnglishTextUtil
.
toLowerCaseSafe
Safe
(
apiPolicyholderInfoDto
.
getNamePyEn
()));
policyPolicyholder
.
setNameEnLc
(
EnglishTextUtil
.
toLowerCaseSafe
(
apiPolicyholderInfoDto
.
getNamePyEn
()));
return
policyPolicyholderService
.
saveOrUpdate
(
policyPolicyholder
);
return
policyPolicyholderService
.
saveOrUpdate
(
policyPolicyholder
);
}
}
...
...
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/PolicyPolicyholderServiceImpl.java
View file @
bb53bfbe
...
@@ -77,7 +77,7 @@ public class PolicyPolicyholderServiceImpl extends ServiceImpl<PolicyPolicyholde
...
@@ -77,7 +77,7 @@ public class PolicyPolicyholderServiceImpl extends ServiceImpl<PolicyPolicyholde
// 中文转简体
// 中文转简体
String
nameSc
=
ChineseTextConverter
.
traditionalToSimplified
(
policyHolder
);
String
nameSc
=
ChineseTextConverter
.
traditionalToSimplified
(
policyHolder
);
// 英文转小写
// 英文转小写
String
nameEnLc
=
EnglishTextUtil
.
toLowerCaseSafe
Safe
(
policyHolder
);
String
nameEnLc
=
EnglishTextUtil
.
toLowerCaseSafe
(
policyHolder
);
return
this
.
baseMapper
.
selectList
(
new
LambdaQueryWrapper
<
PolicyPolicyholder
>()
return
this
.
baseMapper
.
selectList
(
new
LambdaQueryWrapper
<
PolicyPolicyholder
>()
.
and
(
wrapper
->
wrapper
.
and
(
wrapper
->
wrapper
...
...
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