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
d310f868
You need to sign in or sign up before continuing.
Commit
d310f868
authored
Apr 22, 2026
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.7.22-权限
parent
8448aaf7
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
1 deletion
+16
-1
TEmpContractAlertController.java
...yifu/archives/controller/TEmpContractAlertController.java
+2
-0
TInsuranceAlert.java
...cloud/plus/v1/yifu/insurances/entity/TInsuranceAlert.java
+6
-0
TInsuranceWarnMapper.xml
...main/resources/mapper/insurances/TInsuranceWarnMapper.xml
+5
-0
TDispatchInfoPreServiceImpl.java
...yifu/social/service/impl/TDispatchInfoPreServiceImpl.java
+3
-1
No files found.
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/controller/TEmpContractAlertController.java
View file @
d310f868
...
...
@@ -346,6 +346,8 @@ public class TEmpContractAlertController {
@Operation
(
description
=
"导出自动化续签待办"
)
@PostMapping
(
"/autoExport"
)
public
void
autoExport
(
HttpServletResponse
response
,
@RequestBody
ContractAlertSearchVo
searchVo
)
{
YifuUser
user
=
SecurityUtils
.
getUser
();
menuUtil
.
setAuthSql
(
user
,
searchVo
);
searchVo
.
setAutoFlag
(
CommonConstants
.
ZERO_STRING
);
tEmpContractAlertService
.
listAutoExport
(
response
,
searchVo
);
}
...
...
yifu-insurances/yifu-insurances-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/entity/TInsuranceAlert.java
View file @
d310f868
...
...
@@ -233,6 +233,12 @@ public class TInsuranceAlert extends BaseEntity {
@Schema
(
description
=
"商险续签待办ID"
)
private
String
insurancesPreRenewDetailId
;
/**
* 项目id
*/
@Schema
(
description
=
"项目id"
)
private
String
deptId
;
//@Schema(description = "本表的ID就是商险ID")
@TableField
(
exist
=
false
)
...
...
yifu-insurances/yifu-insurances-biz/src/main/resources/mapper/insurances/TInsuranceWarnMapper.xml
View file @
d310f868
...
...
@@ -61,6 +61,7 @@
<result
property=
"policyEffectNew"
column=
"POLICY_EFFECT_NEW"
jdbcType=
"DATE"
/>
<result
property=
"customerUsername"
column=
"CUSTOMER_USERNAME"
jdbcType=
"VARCHAR"
/>
<result
property=
"replaceTag"
column=
"REPLACE_TAG"
jdbcType=
"VARCHAR"
/>
<result
property=
"deptId"
column=
"DEPT_ID"
jdbcType=
"VARCHAR"
/>
</resultMap>
<!-- 商险续签待办专用 -->
...
...
@@ -107,6 +108,7 @@
a.ALERT_ID,
a.HAVE_WORK_DAY,
a.INSURANCES_PRE_RENEW_DETAIL_ID,
a.DEPT_ID,
b.BUY_TYPE,
b.process_status,
b.error_info,
...
...
@@ -255,6 +257,9 @@
<if
test=
"tInsuranceAlert.customerUsername != null and tInsuranceAlert.customerUsername.trim() != ''"
>
AND b.CUSTOMER_USERNAME like CONCAT('%',#{tInsuranceAlert.customerUsername},'%')
</if>
<if
test=
"tInsuranceAlert.authSql != null and tInsuranceAlert.authSql.trim() != ''"
>
${tInsuranceAlert.authSql}
</if>
<if
test=
"tInsuranceAlert.deptNoList != null and tInsuranceAlert.deptNoList.size > 0"
>
AND a.DEPT_NO in
<foreach
item=
"idStr"
index=
"index"
collection=
"tInsuranceAlert.deptNoList"
open=
"("
separator=
","
...
...
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TDispatchInfoPreServiceImpl.java
View file @
d310f868
...
...
@@ -200,7 +200,9 @@ public class TDispatchInfoPreServiceImpl extends ServiceImpl<TDispatchInfoPreMap
@Override
public
long
getDispatchInfoFundCount
(
TDispatchInfoPreSearchVo
searchVo
)
{
if
(
Common
.
isEmpty
(
searchVo
.
getType
()))
{
searchVo
.
setType
(
CommonConstants
.
ONE_STRING
);
}
initSearchVo
(
searchVo
);
return
baseMapper
.
selectFundCount
(
searchVo
);
}
...
...
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