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
6933bdc6
Commit
6933bdc6
authored
Apr 01, 2025
by
hongguangwu
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/MVP1.7.8' into MVP1.7.8
parents
89a02a4c
28377cae
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
45 additions
and
7 deletions
+45
-7
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
TBusinessInsuranceVo.java
...loud/plus/v1/yifu/insurances/vo/TBusinessInsuranceVo.java
+6
-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
+7
-3
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 @
6933bdc6
...
...
@@ -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 @
6933bdc6
...
...
@@ -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-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/vo/TBusinessInsuranceVo.java
View file @
6933bdc6
...
...
@@ -363,4 +363,10 @@ public class TBusinessInsuranceVo implements Serializable {
*/
@Schema
(
description
=
"有忽略提醒 0:忽略 1:不忽略"
)
private
String
expireIgnoreFlag
;
/**
* @Author fxj
* 新增到期提醒人
**/
private
String
alerter
;
}
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/impl/TInsuranceDetailServiceImpl.java
View file @
6933bdc6
...
...
@@ -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 @
6933bdc6
...
...
@@ -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 @
6933bdc6
...
...
@@ -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
...
...
@@ -2003,13 +2006,14 @@
<select
id=
"pageDiy"
resultType=
"com.yifu.cloud.plus.v1.yifu.insurances.vo.TBusinessInsuranceVo"
>
<include
refid=
"expire_sql_param"
/>
,a.INSURANCE_HANDLE_CITY_NAME
,a.INSURANCE_HANDLE_CITY_NAME
,a.ALERTER
from
t_insurance_alert a
LEFT JOIN view_insurance_replace r on a.id=r.TO_INSURANCE_DETAIL_ID
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 @
6933bdc6
...
...
@@ -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