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
315be869
Commit
315be869
authored
Jul 19, 2023
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
社保审核 社保公积金更新SQL 优化
parent
3b474932
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
TProvidentFundMapper.java
...loud/plus/v1/yifu/social/mapper/TProvidentFundMapper.java
+2
-0
TDispatchInfoServiceImpl.java
...v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
+1
-1
TProvidentFundMapper.xml
...al-biz/src/main/resources/mapper/TProvidentFundMapper.xml
+13
-0
No files found.
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/mapper/TProvidentFundMapper.java
View file @
315be869
...
@@ -39,4 +39,6 @@ public interface TProvidentFundMapper extends BaseMapper<TProvidentFund> {
...
@@ -39,4 +39,6 @@ public interface TProvidentFundMapper extends BaseMapper<TProvidentFund> {
IPage
<
TProvidentFund
>
getTProvidentFundPage
(
Page
<
TProvidentFund
>
page
,
@Param
(
"tProvidentFund"
)
TProvidentFund
tProvidentFund
);
IPage
<
TProvidentFund
>
getTProvidentFundPage
(
Page
<
TProvidentFund
>
page
,
@Param
(
"tProvidentFund"
)
TProvidentFund
tProvidentFund
);
int
updateFundInfoById
(
@Param
(
"tProvidentFund"
)
TProvidentFund
providentFund
);
int
updateFundInfoById
(
@Param
(
"tProvidentFund"
)
TProvidentFund
providentFund
);
int
updateByIdOfAudit
(
@Param
(
"tProvidentFund"
)
TProvidentFund
providentFund
);
}
}
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
View file @
315be869
...
@@ -3376,7 +3376,7 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
...
@@ -3376,7 +3376,7 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
sf
.
setFundReduceDate
(
null
);
sf
.
setFundReduceDate
(
null
);
}
}
}
}
fundMapper
.
updateById
(
providentFund
);
fundMapper
.
updateById
OfAudit
(
providentFund
);
}
}
}
}
...
...
yifu-social/yifu-social-biz/src/main/resources/mapper/TProvidentFundMapper.xml
View file @
315be869
...
@@ -306,4 +306,17 @@
...
@@ -306,4 +306,17 @@
</trim>
</trim>
WHERE id=#{tProvidentFund.id}
WHERE id=#{tProvidentFund.id}
</update>
</update>
<update
id=
"updateByIdOfAudit"
>
update t_provident_fund
<trim
prefix=
"set"
suffixOverrides=
","
>
<if
test=
"tProvidentFund.reduceCan != null"
>
REDUCE_CAN=#{tProvidentFund.reduceCan},
</if>
<if
test=
"tProvidentFund.auditTime != null"
>
AUDIT_TIME=#{tProvidentFund.auditTime},
</if>
<if
test=
"tProvidentFund.auditUser != null"
>
AUDIT_USER=#{tProvidentFund.auditUser},
</if>
<if
test=
"tProvidentFund.auditUserName != null"
>
AUDIT_USER_NAME=#{tProvidentFund.auditUserName},
</if>
<if
test=
"tProvidentFund.auditStatus != null"
>
AUDIT_STATUS=#{tProvidentFund.auditStatus},
</if>
<if
test=
"tProvidentFund.deleteFlag != null"
>
DELETE_FLAG=#{tProvidentFund.deleteFlag},
</if>
</trim>
WHERE id=#{tProvidentFund.id}
</update>
</mapper>
</mapper>
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