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
b8714678
Commit
b8714678
authored
Apr 09, 2025
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
huych-入职登记商险待办提交
parent
7be115e8
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
47 additions
and
0 deletions
+47
-0
TEmployeeInsurancePreController.java
...nsurances/controller/TEmployeeInsurancePreController.java
+13
-0
TEmployeeInsurancePreMapper.java
...rances/mapper/insurances/TEmployeeInsurancePreMapper.java
+7
-0
TEmployeeInsurancePreService.java
...ances/service/insurance/TEmployeeInsurancePreService.java
+6
-0
TEmployeeInsurancePreServiceImpl.java
...vice/insurance/impl/TEmployeeInsurancePreServiceImpl.java
+10
-0
TEmployeeInsurancePreMapper.xml
...sources/mapper/insurances/TEmployeeInsurancePreMapper.xml
+11
-0
No files found.
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/controller/TEmployeeInsurancePreController.java
View file @
b8714678
...
...
@@ -56,6 +56,19 @@ public class TEmployeeInsurancePreController {
return
new
R
<>(
tEmployeeInsurancePreService
.
getTEmployeeInsurancePrePage
(
page
,
tEmployeeInsurancePre
));
}
/**
* 不分页查询
* @param tEmployeeInsurancePre 商险待办任务表
* @return
*/
@Operation
(
description
=
"简单分页查询"
)
@GetMapping
(
"/noPage"
)
public
R
<
List
<
TEmployeeInsurancePre
>>
getTEmployeeInsurancePrePage
(
TEmployeeInsurancePreSearchVo
tEmployeeInsurancePre
)
{
YifuUser
user
=
SecurityUtils
.
getUser
();
menuUtil
.
setAuthSql
(
user
,
tEmployeeInsurancePre
);
return
new
R
<>(
tEmployeeInsurancePreService
.
getTEmployeeInsurancePreNoPage
(
tEmployeeInsurancePre
));
}
/**
* 通过id查询商险待办任务表
* @param id id
...
...
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/mapper/insurances/TEmployeeInsurancePreMapper.java
View file @
b8714678
...
...
@@ -26,6 +26,13 @@ public interface TEmployeeInsurancePreMapper extends BaseMapper<TEmployeeInsuran
*/
IPage
<
TEmployeeInsurancePre
>
getTEmployeeInsurancePrePage
(
Page
<
TEmployeeInsurancePre
>
page
,
@Param
(
"tEmployeeInsurancePre"
)
TEmployeeInsurancePre
tEmployeeInsurancePre
);
/**
* 商险待办任务表不分页查询
* @param tEmployeeInsurancePre 商险待办任务表
* @return
*/
List
<
TEmployeeInsurancePre
>
getTEmployeeInsurancePreNoPage
(
@Param
(
"tEmployeeInsurancePre"
)
TEmployeeInsurancePre
tEmployeeInsurancePre
);
long
selectExportCount
(
@Param
(
"employeeRegistration"
)
TEmployeeInsurancePreSearchVo
employeeRegistration
);
List
<
TEmployeeInsurancePreExportVo
>
selectExportList
(
@Param
(
"employeeRegistration"
)
TEmployeeInsurancePreSearchVo
employeeRegistration
);
...
...
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/TEmployeeInsurancePreService.java
View file @
b8714678
...
...
@@ -28,6 +28,12 @@ public interface TEmployeeInsurancePreService extends IService<TEmployeeInsuranc
* @return
*/
IPage
<
TEmployeeInsurancePre
>
getTEmployeeInsurancePrePage
(
Page
<
TEmployeeInsurancePre
>
page
,
TEmployeeInsurancePreSearchVo
tEmployeeInsurancePre
);
/**
* 商险待办任务表不分页查询
* @param tEmployeeInsurancePre 商险待办任务表
* @return
*/
List
<
TEmployeeInsurancePre
>
getTEmployeeInsurancePreNoPage
(
TEmployeeInsurancePreSearchVo
tEmployeeInsurancePre
);
/**
* 商险待办任务表导出
...
...
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/impl/TEmployeeInsurancePreServiceImpl.java
View file @
b8714678
...
...
@@ -90,6 +90,16 @@ public class TEmployeeInsurancePreServiceImpl extends ServiceImpl<TEmployeeInsur
return
baseMapper
.
getTEmployeeInsurancePrePage
(
page
,
tEmployeeInsurancePre
);
}
@Override
public
List
<
TEmployeeInsurancePre
>
getTEmployeeInsurancePreNoPage
(
TEmployeeInsurancePreSearchVo
tEmployeeInsurancePre
)
{
//权限赋值
tEmployeeInsurancePre
.
setType
(
CommonConstants
.
ONE_STRING
);
tEmployeeInsurancePre
.
setProcessStatus
(
CommonConstants
.
ZERO_STRING
);
initSearchVo
(
tEmployeeInsurancePre
);
return
baseMapper
.
getTEmployeeInsurancePreNoPage
(
tEmployeeInsurancePre
);
}
/**
* 商险待办任务表批量导出
*
...
...
yifu-insurances/yifu-insurances-biz/src/main/resources/mapper/insurances/TEmployeeInsurancePreMapper.xml
View file @
b8714678
...
...
@@ -225,6 +225,17 @@
</where>
</select>
<!--tEmployeeInsurancePre不分页查询-->
<select
id=
"getTEmployeeInsurancePreNoPage"
resultMap=
"tEmployeeInsurancePreMap"
>
SELECT
<include
refid=
"Base_Column_List"
/>
FROM t_employee_insurance_pre a
<where>
1=1
<include
refid=
"tEmployeeInsurancePre_where"
/>
</where>
</select>
<!--查询list,用来对比,记录日志-->
<select
id=
"getListByEmpPreId"
resultMap=
"tEmployeeInsurancePreMap"
>
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