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
4186b943
You need to sign in or sign up before continuing.
Commit
4186b943
authored
Jan 19, 2026
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
huych-社保公积金自动化带出数据逻辑修改
parent
e0283338
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
48 additions
and
0 deletions
+48
-0
TDispatchInfoPreController.java
...v1/yifu/social/controller/TDispatchInfoPreController.java
+20
-0
TDispatchInfoPreMapper.java
...ud/plus/v1/yifu/social/mapper/TDispatchInfoPreMapper.java
+2
-0
TDispatchInfoPreService.java
.../plus/v1/yifu/social/service/TDispatchInfoPreService.java
+2
-0
TDispatchInfoPreServiceImpl.java
...yifu/social/service/impl/TDispatchInfoPreServiceImpl.java
+10
-0
TDispatchInfoPreMapper.xml
...-biz/src/main/resources/mapper/TDispatchInfoPreMapper.xml
+14
-0
No files found.
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/controller/TDispatchInfoPreController.java
View file @
4186b943
...
...
@@ -82,6 +82,26 @@ public class TDispatchInfoPreController {
return
R
.
ok
(
tDispatchInfoPreService
.
getNoPageList
(
tDispatchInfoPre
));
}
/**
* 不分页查询
*
* @param tDispatchInfoPre 社保待购买表
* @return
*/
@Operation
(
summary
=
"不分页查询(新)"
,
description
=
"不分页查询(新)"
)
@PostMapping
(
"/getNoPageListNew"
)
public
R
<
List
<
TDispatchInfoPre
>>
getTDispatchInfoPreNoPageNew
(
@RequestBody
TDispatchInfoPreSearchVo
tDispatchInfoPre
)
{
YifuUser
user
=
SecurityUtils
.
getUser
();
menuUtil
.
setAuthSql
(
user
,
tDispatchInfoPre
);
//typeSun 0 社保 1 公积金
if
(
Common
.
isEmpty
(
tDispatchInfoPre
.
getTypeSub
())){
tDispatchInfoPre
.
setTypeSub
(
CommonConstants
.
ZERO_STRING
);
}
else
if
(
Common
.
isEmpty
(
tDispatchInfoPre
.
getTypeSub
())){
tDispatchInfoPre
.
setTypeSub
(
tDispatchInfoPre
.
getTypeSub
());
}
return
R
.
ok
(
tDispatchInfoPreService
.
getNoPageListNew
(
tDispatchInfoPre
));
}
/**
* 通过id查询社保待购买表
*
...
...
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/mapper/TDispatchInfoPreMapper.java
View file @
4186b943
...
...
@@ -30,6 +30,8 @@ public interface TDispatchInfoPreMapper extends BaseMapper<TDispatchInfoPre> {
List
<
TDispatchInfoPre
>
geNoPageList
(
@Param
(
"tDispatchInfoPre"
)
TDispatchInfoPreSearchVo
tDispatchInfoPre
);
List
<
TDispatchInfoPre
>
geNoPageListNew
(
@Param
(
"tDispatchInfoPre"
)
TDispatchInfoPreSearchVo
tDispatchInfoPre
);
long
selectExportCount
(
@Param
(
"tDispatchInfoPre"
)
TDispatchInfoPreSearchVo
searchVo
);
List
<
TDispatchInfoPreExportVo
>
selectExportList
(
@Param
(
"tDispatchInfoPre"
)
TDispatchInfoPreSearchVo
searchVo
);
...
...
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/TDispatchInfoPreService.java
View file @
4186b943
...
...
@@ -36,6 +36,8 @@ public interface TDispatchInfoPreService extends IService<TDispatchInfoPre> {
List
<
TDispatchInfoPre
>
getNoPageList
(
TDispatchInfoPreSearchVo
searchVo
);
List
<
TDispatchInfoPre
>
getNoPageListNew
(
TDispatchInfoPreSearchVo
searchVo
);
/**
* 社保待购买单个/批量确认
* @param idList id集合
...
...
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TDispatchInfoPreServiceImpl.java
View file @
4186b943
...
...
@@ -149,6 +149,16 @@ public class TDispatchInfoPreServiceImpl extends ServiceImpl<TDispatchInfoPreMap
return
baseMapper
.
geNoPageList
(
searchVo
);
}
@Override
public
List
<
TDispatchInfoPre
>
getNoPageListNew
(
TDispatchInfoPreSearchVo
searchVo
)
{
searchVo
.
setType
(
CommonConstants
.
ONE_STRING
);
initSearchVo
(
searchVo
);
if
(
Common
.
isEmpty
(
searchVo
.
getStatusList
()))
{
searchVo
.
setStatusList
(
Stream
.
of
(
"0"
).
collect
(
Collectors
.
toList
()));
}
return
baseMapper
.
geNoPageList
(
searchVo
);
}
@Override
public
R
confirm
(
List
<
String
>
idList
)
{
List
<
TDispatchInfoPre
>
socialPreList
=
baseMapper
.
selectList
(
Wrappers
.<
TDispatchInfoPre
>
query
()
...
...
yifu-social/yifu-social-biz/src/main/resources/mapper/TDispatchInfoPreMapper.xml
View file @
4186b943
...
...
@@ -589,6 +589,20 @@
limit 0,2000
</select>
<!--tDispatchInfoPre c端不分页查询-->
<select
id=
"geNoPageListNew"
resultMap=
"tDispatchInfoPreMap"
>
SELECT
<include
refid=
"Base_Column_List"
/>
,a.FUND_START_DATE
FROM t_dispatch_info_pre a
<where>
a.DELETE_FLAG = '0'
<include
refid=
"tDispatchInfoPre_other_where"
/>
</where>
order by a.create_time desc
limit 0,2000
</select>
<!--tDispatchInfoPre社保待派单数据查询-->
<select
id=
"getDisPatcherSocialList"
resultType=
"com.yifu.cloud.plus.v1.yifu.social.vo.TDispatchImportVo"
>
SELECT
...
...
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