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
a2773c1e
Commit
a2773c1e
authored
Oct 21, 2025
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.7.16-税友-是否强制停保
parent
78877c50
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
1 deletion
+25
-1
TSocialInfo.java
...om/yifu/cloud/plus/v1/yifu/social/entity/TSocialInfo.java
+11
-0
SociaFriendYgsAddVo.java
...ifu/cloud/plus/v1/yifu/social/vo/SociaFriendYgsAddVo.java
+4
-0
SocialFriendConfig.java
.../cloud/plus/v1/yifu/social/config/SocialFriendConfig.java
+4
-0
TSocialFriendServiceImpl.java
...v1/yifu/social/service/impl/TSocialFriendServiceImpl.java
+2
-0
TSocialFriendMapper.xml
...ial-biz/src/main/resources/mapper/TSocialFriendMapper.xml
+1
-0
TSocialInfoMapper.xml
...ocial-biz/src/main/resources/mapper/TSocialInfoMapper.xml
+3
-1
No files found.
yifu-social/yifu-social-api/src/main/java/com/yifu/cloud/plus/v1/yifu/social/entity/TSocialInfo.java
View file @
a2773c1e
...
...
@@ -1137,6 +1137,17 @@ public class TSocialInfo extends BaseEntity {
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"减少时留存的增加时的-医生大税友的任务ID"
)
private
String
addYsdRequestId
;
/**
* 是否强制停保:1、仅社保网厅
* 2、税友默认为否,我们默认不推送这个值
*/
@Length
(
max
=
1
,
message
=
"是否强制停保 不能超过1个字符"
)
@ExcelAttribute
(
name
=
"是否强制停保"
,
maxLength
=
1
)
@Schema
(
description
=
"是否强制停保"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"是否强制停保"
)
private
String
sfqztb
;
// 以上是转为自动化办理查询使用的
// 派单id,社保士兵使用
...
...
yifu-social/yifu-social-api/src/main/java/com/yifu/cloud/plus/v1/yifu/social/vo/SociaFriendYgsAddVo.java
View file @
a2773c1e
...
...
@@ -197,4 +197,8 @@ public class SociaFriendYgsAddVo implements Serializable {
@ExcelProperty
(
"离职日"
)
private
String
leaveDay
;
// 仅社保,税友接口目前不支持医保 2025-10-21 11:49:23 已告知产品振华、客服陈红
@ExcelProperty
(
"是否强制停保"
)
private
String
sfqztb
;
}
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/config/SocialFriendConfig.java
View file @
a2773c1e
...
...
@@ -572,6 +572,10 @@ public class SocialFriendConfig {
tszdxx
.
put
(
"ryszswrq"
,
vo
.
getLeaveDay
());
}
}
else
{
// 是否强制停保:目前仅社保,税友暂不支持医保
if
(
Common
.
isNotNull
(
vo
.
getSfqztb
())
&&
"是"
.
equals
(
vo
.
getSfqztb
()))
{
tszdxx
.
put
(
"sfqztb"
,
vo
.
getSfqztb
());
}
if
(
Common
.
isNotNull
(
vo
.
getAutoLeaveDoc
()))
{
tszdxx
.
put
(
"shjycl"
,
vo
.
getAutoLeaveDoc
());
}
else
{
...
...
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TSocialFriendServiceImpl.java
View file @
a2773c1e
...
...
@@ -255,6 +255,8 @@ public class TSocialFriendServiceImpl extends ServiceImpl<TSocialFriendMapper, T
updateSocial
.
setYgsSocialStartDateNext
(
nextDate
);
}
}
}
else
if
(
"该人员存在欠缴记录,是否强制减员"
.
equals
(
failConfig
.
getReasonKey
())){
updateSocial
.
setSfqztb
(
"是"
);
}
ygsHandleStatus
=
CommonConstants
.
THREE_STRING
;
// 新增流程进展明细
...
...
yifu-social/yifu-social-biz/src/main/resources/mapper/TSocialFriendMapper.xml
View file @
a2773c1e
...
...
@@ -105,6 +105,7 @@
,DATE_FORMAT(a.CREATE_TIME,"%Y%m") yearMonth
,DATE_FORMAT(now(),"%Y年%m月%d日") nowDay
,s.SOCIAL_HOUSEHOLD huId
,s.SFQZTB sfqztb
</sql>
...
...
yifu-social/yifu-social-biz/src/main/resources/mapper/TSocialInfoMapper.xml
View file @
a2773c1e
...
...
@@ -155,6 +155,7 @@
<result
property=
"ygsRequestId"
column=
"YGS_REQUEST_ID"
/>
<result
property=
"ysdRequestId"
column=
"YSD_REQUEST_ID"
/>
<result
property=
"ysdSocialStartDateNext"
column=
"YSD_SOCIAL_START_DATE_NEXT"
/>
<result
property=
"sfqztb"
column=
"SFQZTB"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
a.ID,
...
...
@@ -270,7 +271,8 @@
a.YSD_ADD_ID,
a.YGS_REQUEST_ID,
a.YSD_REQUEST_ID,
a.YSD_SOCIAL_START_DATE_NEXT
a.YSD_SOCIAL_START_DATE_NEXT,
a.SFQZTB
</sql>
<sql
id=
"tSocialInfo_where"
>
...
...
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