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
eba9dff8
Commit
eba9dff8
authored
May 12, 2026
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
push
parent
17710612
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
yd-csf-service/src/main/java/com/yd/csf/service/dao/PolicyFollowMapper.java
+1
-1
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/PolicyFollowServiceImpl.java
+4
-1
yd-csf-service/src/main/resources/mappers/PolicyFollowMapper.xml
+2
-2
No files found.
yd-csf-service/src/main/java/com/yd/csf/service/dao/PolicyFollowMapper.java
View file @
eba9dff8
...
@@ -20,7 +20,7 @@ public interface PolicyFollowMapper extends BaseMapper<PolicyFollow> {
...
@@ -20,7 +20,7 @@ public interface PolicyFollowMapper extends BaseMapper<PolicyFollow> {
List
<
String
>
queryPolicyNoList
(
List
<
String
>
queryPolicyNoList
(
@Param
(
"policyHolderSc"
)
String
policyHolderSc
,
@Param
(
"policyHolderSc"
)
String
policyHolderSc
,
@Param
(
"policyHolderEnLc"
)
String
policyHolderEnLc
,
@Param
(
"policyHolderEnLc"
)
String
policyHolderEnLc
,
@Param
(
"signer
"
)
String
signer
,
@Param
(
"signer
Sc"
)
String
signerSc
,
@Param
(
"brokerName"
)
String
brokerName
,
@Param
(
"brokerName"
)
String
brokerName
,
@Param
(
"insuredSc"
)
String
insuredSc
,
@Param
(
"insuredSc"
)
String
insuredSc
,
@Param
(
"insuredEnLc"
)
String
insuredEnLc
@Param
(
"insuredEnLc"
)
String
insuredEnLc
...
...
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/PolicyFollowServiceImpl.java
View file @
eba9dff8
...
@@ -1338,9 +1338,12 @@ public class PolicyFollowServiceImpl extends ServiceImpl<PolicyFollowMapper, Pol
...
@@ -1338,9 +1338,12 @@ public class PolicyFollowServiceImpl extends ServiceImpl<PolicyFollowMapper, Pol
String
insuredSc
=
ChineseTextConverter
.
traditionalToSimplified
(
insured
);
String
insuredSc
=
ChineseTextConverter
.
traditionalToSimplified
(
insured
);
String
insuredEnLc
=
EnglishTextUtil
.
toLowerCaseSafe
(
insured
);
String
insuredEnLc
=
EnglishTextUtil
.
toLowerCaseSafe
(
insured
);
//签单员繁转简体
String
signerSc
=
ChineseTextConverter
.
traditionalToSimplified
(
signer
);
return
this
.
baseMapper
.
queryPolicyNoList
(
return
this
.
baseMapper
.
queryPolicyNoList
(
policyHolderSc
,
policyHolderEnLc
,
policyHolderSc
,
policyHolderEnLc
,
signer
,
signer
Sc
,
brokerName
,
brokerName
,
insuredSc
,
insuredEnLc
insuredSc
,
insuredEnLc
);
);
...
...
yd-csf-service/src/main/resources/mappers/PolicyFollowMapper.xml
View file @
eba9dff8
...
@@ -182,8 +182,8 @@
...
@@ -182,8 +182,8 @@
</if>
</if>
)
)
</if>
</if>
<if
test=
"signer
!= null and signer
!= ''"
>
<if
test=
"signer
Sc != null and signerSc
!= ''"
>
and pf.signer
like concat('%', #{signer
}, '%')
and pf.signer
_sc like concat('%', #{signerSc
}, '%')
</if>
</if>
<if
test=
"brokerName != null and brokerName != ''"
>
<if
test=
"brokerName != null and brokerName != ''"
>
and first_broker.broker_name like concat('%', #{brokerName}, '%')
and first_broker.broker_name like concat('%', #{brokerName}, '%')
...
...
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