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
689c722c
Commit
689c722c
authored
Apr 08, 2026
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
派单查询详情优化-fxj
parent
19d7863d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
TSocialInfo.java
...om/yifu/cloud/plus/v1/yifu/social/entity/TSocialInfo.java
+20
-0
TDispatchInfoServiceImpl.java
...v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
+2
-0
No files found.
yifu-social/yifu-social-api/src/main/java/com/yifu/cloud/plus/v1/yifu/social/entity/TSocialInfo.java
View file @
689c722c
...
...
@@ -615,6 +615,26 @@ public class TSocialInfo extends BaseEntity {
@ExcelProperty
(
"社保是否可以补缴"
)
private
String
canOverpayPension
;
/**
* 社保补缴政策
*/
@Length
(
max
=
500
,
message
=
"社保补缴政策 不能超过500个字符"
)
@ExcelAttribute
(
name
=
"社保补缴政策"
,
maxLength
=
500
)
@Schema
(
description
=
"社保补缴政策"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"社保补缴政策"
)
private
String
payPolicyPension
;
/**
* 医保补缴政策
*/
@Length
(
max
=
500
,
message
=
"医保补缴政策 不能超过500个字符"
)
@ExcelAttribute
(
name
=
"医保补缴政策"
,
maxLength
=
500
)
@Schema
(
description
=
"医保补缴政策"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"医保补缴政策"
)
private
String
payPolicyMedical
;
/**
* 医保是否可以补缴: 0:是,1:否
...
...
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
View file @
689c722c
...
...
@@ -1818,6 +1818,8 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
}
social
.
setCanOverpay
(
socialSet
.
getCanOverpay
());
social
.
setCanOverpayPension
(
socialSet
.
getCanOverpayPension
());
social
.
setPayPolicyPension
(
socialSet
.
getPayPolicyPension
());
social
.
setPayPolicyMedical
(
socialSet
.
getPayPolicyMedical
());
social
.
setCanOverpayMedical
(
socialSet
.
getCanOverpayMedical
());
social
.
setCardinalId
(
socialSet
.
getId
());
social
.
setSocialHousehold
(
socialSet
.
getDepartId
());
...
...
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