Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangxinjiang
yifu-mvp
Commits
42b7a1a7
Commit
42b7a1a7
authored
Apr 01, 2025
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
商险提醒优化-fxj
parent
d5e0d633
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
38 additions
and
6 deletions
+38
-6
TInsuranceAlert.java
...cloud/plus/v1/yifu/insurances/entity/TInsuranceAlert.java
+12
-0
InsuranceSearchVo.java
...u/cloud/plus/v1/yifu/insurances/vo/InsuranceSearchVo.java
+12
-0
TInsuranceDetailServiceImpl.java
...s/service/insurance/impl/TInsuranceDetailServiceImpl.java
+2
-2
TInsuranceWarnServiceImpl.java
...ces/service/insurance/impl/TInsuranceWarnServiceImpl.java
+4
-2
TInsuranceDetailMapper.xml
...in/resources/mapper/insurances/TInsuranceDetailMapper.xml
+6
-2
TInsuranceWarnMapper.xml
...main/resources/mapper/insurances/TInsuranceWarnMapper.xml
+2
-0
No files found.
yifu-insurances/yifu-insurances-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/entity/TInsuranceAlert.java
View file @
42b7a1a7
...
...
@@ -207,5 +207,17 @@ public class TInsuranceAlert extends BaseEntity {
@Schema
(
description
=
"消息提醒备注"
)
private
String
expireRemark
;
/**
* 消息提醒人
*/
@Schema
(
description
=
"消息提醒人"
)
private
String
alerter
;
/**
* 消息提醒人ID
*/
@Schema
(
description
=
"消息提醒人ID"
)
private
String
alertId
;
private
static
final
long
serialVersionUID
=
1L
;
}
\ No newline at end of file
yifu-insurances/yifu-insurances-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/vo/InsuranceSearchVo.java
View file @
42b7a1a7
...
...
@@ -42,4 +42,16 @@ public class InsuranceSearchVo extends TBusinessInsuranceVo{
* 导出选择的ID
**/
private
String
idStr
;
/**
* @Author fxj
* 新增到期提醒人
**/
private
String
alerter
;
/**
* 消息提醒人ID
*/
@Schema
(
description
=
"消息提醒人ID"
)
private
String
alertId
;
}
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/impl/TInsuranceDetailServiceImpl.java
View file @
42b7a1a7
...
...
@@ -7818,9 +7818,9 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
long
roleId
=
1851541100126863362L
;
boolean
isSsc
=
this
.
haveRole
(
user
,
roleId
);
if
(
isSsc
)
{
condition
.
set
CreateBy
(
null
);
condition
.
set
AlertId
(
null
);
}
else
{
condition
.
set
CreateBy
(
user
.
getId
());
condition
.
set
AlertId
(
user
.
getId
());
}
// R<TSettleDomainListVo> sdRes = archivesDaprUtil.getPermissionByUserId(user.getId());
// List<TInsuranceAreaRes> areaRes = insuranceAreaResMapper.selectList(Wrappers.<TInsuranceAreaRes>query().lambda()
...
...
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/impl/TInsuranceWarnServiceImpl.java
View file @
42b7a1a7
...
...
@@ -155,6 +155,8 @@ public class TInsuranceWarnServiceImpl extends ServiceImpl<TInsuranceWarnMapper,
for
(
TInsuranceAlert
alert:
list
){
userId
=
null
;
nickName
=
null
;
alert
.
setAlertId
(
alert
.
getCreateBy
());
alert
.
setAlerter
(
alert
.
getCreateName
());
if
(
Common
.
isNotNull
(
userMap
.
get
(
alert
.
getCreateBy
()))){
domain
=
domainHashMap
.
get
(
alert
.
getDeptNo
());
if
(
Common
.
isNotNull
(
domain
)){
...
...
@@ -173,8 +175,8 @@ public class TInsuranceWarnServiceImpl extends ServiceImpl<TInsuranceWarnMapper,
nickName
=
sysConfig
.
getConfigValue1
();
}
if
(
Common
.
isNotNull
(
nickName
)
&&
Common
.
isNotNull
(
userId
)){
alert
.
set
CreateBy
(
userId
);
alert
.
set
CreateName
(
nickName
);
alert
.
set
Alerter
(
nickName
);
alert
.
set
AlertId
(
userId
);
}
}
}
...
...
yifu-insurances/yifu-insurances-biz/src/main/resources/mapper/insurances/TInsuranceDetailMapper.xml
View file @
42b7a1a7
...
...
@@ -1854,8 +1854,11 @@
<if
test=
"param.isOverdue != null and param.isOverdue.trim() != ''"
>
AND a.IS_OVERDUE = #{param.isOverdue}
</if>
<if
test=
"param.createBy != null and param.createBy.trim() != ''"
>
and a.CREATE_BY = #{param.createBy}
<if
test=
"param.alerter != null and param.alerter.trim() != ''"
>
and a.ALERTER = #{param.alerter}
</if>
<if
test=
"param.alertId != null and param.alertId.trim() != ''"
>
and a.ALERT_ID = #{param.alertId}
</if>
<if
test=
"param.idList != null and param.idList.size() > 0"
>
and a.id in
...
...
@@ -2010,6 +2013,7 @@
LEFT JOIN view_insurance_replace r2 on a.id=r2.FROM_INSURANCE_DETAIL_ID
LEFT JOIN t_insurance_refund rf on rf.INS_DETAIL_ID=a.id
<include
refid=
"expire_sql_where"
/>
group by a.id
order by a.POLICY_END asc
<if
test=
"param != null and param.limitStart != null"
>
limit #{param.limitStart},#{param.limitEnd}
...
...
yifu-insurances/yifu-insurances-biz/src/main/resources/mapper/insurances/TInsuranceWarnMapper.xml
View file @
42b7a1a7
...
...
@@ -43,6 +43,8 @@
<result
property=
"unitNo"
column=
"UNIT_NO"
jdbcType=
"VARCHAR"
/>
<result
property=
"expireIgnoreFlag"
column=
"EXPIRE_IGNORE_FLAG"
jdbcType=
"VARCHAR"
/>
<result
property=
"expireRemark"
column=
"EXPIRE_REMARK"
jdbcType=
"VARCHAR"
/>
<result
property=
"alerter"
column=
"ALERTER"
jdbcType=
"VARCHAR"
/>
<result
property=
"alertId"
column=
"ALERT_ID"
jdbcType=
"VARCHAR"
/>
</resultMap>
...
...
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