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
fd95f903
Commit
fd95f903
authored
May 13, 2024
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.6.4-社保士兵相关代码6-列表表头
parent
12327037
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
116 additions
and
5 deletions
+116
-5
TSocialSoldierPageVo.java
...fu/cloud/plus/v1/yifu/social/vo/TSocialSoldierPageVo.java
+101
-0
TDispatchInfoController.java
...us/v1/yifu/social/controller/TDispatchInfoController.java
+1
-1
TDispatchInfoMapper.java
...cloud/plus/v1/yifu/social/mapper/TDispatchInfoMapper.java
+1
-1
TDispatchInfoService.java
...oud/plus/v1/yifu/social/service/TDispatchInfoService.java
+1
-1
TDispatchInfoServiceImpl.java
...v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
+1
-1
TDispatchInfoMapper.xml
...ial-biz/src/main/resources/mapper/TDispatchInfoMapper.xml
+11
-1
No files found.
yifu-social/yifu-social-api/src/main/java/com/yifu/cloud/plus/v1/yifu/social/vo/TSocialSoldierPageVo.java
0 → 100644
View file @
fd95f903
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
social
.
vo
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.alibaba.excel.annotation.write.style.HeadFontStyle
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
com.yifu.cloud.plus.v1.yifu.social.entity.TDispatchInfo
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
org.hibernate.validator.constraints.Length
;
import
javax.validation.constraints.NotBlank
;
/**
* 社保士兵列表查询
*
* @author hgw
* @date 2024-5-13 15:36:27
*/
@Data
public
class
TSocialSoldierPageVo
extends
TDispatchInfo
{
/**
* 社保户名称
*/
@ExcelAttribute
(
name
=
"社保户名称"
,
maxLength
=
50
)
@Schema
(
description
=
"社保户名称"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"社保户名称"
)
private
String
socialHouseholdName
;
@NotBlank
(
message
=
"养工失状态不能为空"
)
@Length
(
max
=
32
,
message
=
"养工失状态 不能超过32个字符"
)
@ExcelAttribute
(
name
=
"养工失状态"
,
isNotEmpty
=
true
,
errorInfo
=
"办理状态不能为空"
,
maxLength
=
32
)
@Schema
(
description
=
"养工失状态:(0空、1待办理、2自动办理中、3继续办理、4终止办理、5人工处理、6成功)"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"养工失状态"
)
private
String
ygsHandleStatus
;
/**
* 医生大状态:(0空、1待办理、2自动办理中、3继续办理、4终止办理、5人工处理)
*/
@NotBlank
(
message
=
"医生大状态不能为空"
)
@Length
(
max
=
32
,
message
=
"医生大状态 不能超过32个字符"
)
@ExcelAttribute
(
name
=
"医生大状态"
,
isNotEmpty
=
true
,
errorInfo
=
"办理状态不能为空"
,
maxLength
=
32
)
@Schema
(
description
=
"医生大状态:(0空、1待办理、2自动办理中、3继续办理、4终止办理、5人工处理、6成功)"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"医生大状态"
)
private
String
ysdHandleStatus
;
/**
* 养工失反馈
*/
@Length
(
max
=
500
,
message
=
"养工失反馈 不能超过500个字符"
)
@ExcelAttribute
(
name
=
"养工失反馈"
,
maxLength
=
500
)
@Schema
(
description
=
"养工失反馈"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"养工失反馈"
)
private
String
ygsRemark
;
/**
* 医生大反馈
*/
@Length
(
max
=
500
,
message
=
"医生大反馈 不能超过500个字符"
)
@ExcelAttribute
(
name
=
"医生大反馈"
,
maxLength
=
500
)
@Schema
(
description
=
"医生大反馈"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"医生大反馈"
)
private
String
ysdRemark
;
/**
* 养工失反馈-原反馈
*/
@Length
(
max
=
500
,
message
=
"养工失反馈-原反馈 不能超过500个字符"
)
@ExcelAttribute
(
name
=
"养工失反馈-原反馈"
,
maxLength
=
500
)
@Schema
(
description
=
"养工失反馈-原反馈"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"养工失反馈-原反馈"
)
private
String
ygsRemarkOld
;
/**
* 医生大反馈-原反馈
*/
@Length
(
max
=
500
,
message
=
"医生大反馈-原反馈 不能超过500个字符"
)
@ExcelAttribute
(
name
=
"医生大反馈-原反馈"
,
maxLength
=
500
)
@Schema
(
description
=
"医生大反馈-原反馈"
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"医生大反馈-原反馈"
)
private
String
ysdRemarkOld
;
}
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/controller/TDispatchInfoController.java
View file @
fd95f903
...
@@ -217,7 +217,7 @@ public class TDispatchInfoController {
...
@@ -217,7 +217,7 @@ public class TDispatchInfoController {
**/
**/
@Operation
(
description
=
"简单分页查询--社保士兵列表"
)
@Operation
(
description
=
"简单分页查询--社保士兵列表"
)
@GetMapping
(
"/pageSocialSoldier"
)
@GetMapping
(
"/pageSocialSoldier"
)
public
R
<
IPage
<
T
DispatchInfo
>>
pageSocialSoldier
(
Page
<
TDispatchInf
o
>
page
,
SocialHandleSearchVo
tDispatchInfo
)
{
public
R
<
IPage
<
T
SocialSoldierPageVo
>>
pageSocialSoldier
(
Page
<
TSocialSoldierPageV
o
>
page
,
SocialHandleSearchVo
tDispatchInfo
)
{
tDispatchInfo
.
setDeleteFlag
(
CommonConstants
.
ZERO_STRING
);
tDispatchInfo
.
setDeleteFlag
(
CommonConstants
.
ZERO_STRING
);
YifuUser
user
=
SecurityUtils
.
getUser
();
YifuUser
user
=
SecurityUtils
.
getUser
();
menuUtil
.
setAuthSql
(
user
,
tDispatchInfo
);
menuUtil
.
setAuthSql
(
user
,
tDispatchInfo
);
...
...
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/mapper/TDispatchInfoMapper.java
View file @
fd95f903
...
@@ -111,7 +111,7 @@ public interface TDispatchInfoMapper extends BaseMapper<TDispatchInfo> {
...
@@ -111,7 +111,7 @@ public interface TDispatchInfoMapper extends BaseMapper<TDispatchInfo> {
* @Date: 2024/5/10 11:50
* @Date: 2024/5/10 11:50
* @return: com.baomidou.mybatisplus.core.metadata.IPage<com.yifu.cloud.plus.v1.yifu.social.entity.TDispatchInfo>
* @return: com.baomidou.mybatisplus.core.metadata.IPage<com.yifu.cloud.plus.v1.yifu.social.entity.TDispatchInfo>
**/
**/
IPage
<
T
DispatchInfo
>
getTSocialSoldierHandlePage
(
Page
<
TDispatchInf
o
>
page
,
IPage
<
T
SocialSoldierPageVo
>
getTSocialSoldierHandlePage
(
Page
<
TSocialSoldierPageV
o
>
page
,
@Param
(
"tDispatchInfo"
)
SocialHandleSearchVo
tDispatchInfo
,
@Param
(
"tDispatchInfo"
)
SocialHandleSearchVo
tDispatchInfo
,
@Param
(
"idsStr"
)
List
<
String
>
idsStr
);
@Param
(
"idsStr"
)
List
<
String
>
idsStr
);
...
...
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/TDispatchInfoService.java
View file @
fd95f903
...
@@ -98,7 +98,7 @@ public interface TDispatchInfoService extends IService<TDispatchInfo> {
...
@@ -98,7 +98,7 @@ public interface TDispatchInfoService extends IService<TDispatchInfo> {
* @Date: 2024/5/10 11:51
* @Date: 2024/5/10 11:51
* @return: com.baomidou.mybatisplus.core.metadata.IPage<com.yifu.cloud.plus.v1.yifu.social.entity.TDispatchInfo>
* @return: com.baomidou.mybatisplus.core.metadata.IPage<com.yifu.cloud.plus.v1.yifu.social.entity.TDispatchInfo>
**/
**/
IPage
<
T
DispatchInfo
>
getTSocialSoldierHandlePage
(
Page
<
TDispatchInf
o
>
page
,
SocialHandleSearchVo
tDispatchInfo
);
IPage
<
T
SocialSoldierPageVo
>
getTSocialSoldierHandlePage
(
Page
<
TSocialSoldierPageV
o
>
page
,
SocialHandleSearchVo
tDispatchInfo
);
IPage
<
TDispatchInfo
>
getTDispatchSocialHandlePage
(
Page
<
TDispatchInfo
>
page
,
SocialHandleSearchVo
tDispatchInfo
);
IPage
<
TDispatchInfo
>
getTDispatchSocialHandlePage
(
Page
<
TDispatchInfo
>
page
,
SocialHandleSearchVo
tDispatchInfo
);
...
...
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TDispatchInfoServiceImpl.java
View file @
fd95f903
...
@@ -5225,7 +5225,7 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
...
@@ -5225,7 +5225,7 @@ public class TDispatchInfoServiceImpl extends ServiceImpl<TDispatchInfoMapper, T
}
}
@Override
@Override
public
IPage
<
T
DispatchInfo
>
getTSocialSoldierHandlePage
(
Page
<
TDispatchInf
o
>
page
,
SocialHandleSearchVo
tDispatchInfo
)
{
public
IPage
<
T
SocialSoldierPageVo
>
getTSocialSoldierHandlePage
(
Page
<
TSocialSoldierPageV
o
>
page
,
SocialHandleSearchVo
tDispatchInfo
)
{
return
baseMapper
.
getTSocialSoldierHandlePage
(
page
,
tDispatchInfo
,
null
);
return
baseMapper
.
getTSocialSoldierHandlePage
(
page
,
tDispatchInfo
,
null
);
}
}
...
...
yifu-social/yifu-social-biz/src/main/resources/mapper/TDispatchInfoMapper.xml
View file @
fd95f903
...
@@ -1290,8 +1290,18 @@
...
@@ -1290,8 +1290,18 @@
<include
refid=
"where_getSocialSoldier"
/>
<include
refid=
"where_getSocialSoldier"
/>
</select>
</select>
<resultMap
id=
"socialSoldierPageMap"
type=
"com.yifu.cloud.plus.v1.yifu.social.vo.TSocialSoldierPageVo"
extends=
"tDispatchInfoMap"
>
<result
property=
"socialHouseholdName"
column=
"SOCIAL_HOUSEHOLD_NAME"
/>
<result
property=
"ygsHandleStatus"
column=
"YGS_HANDLE_STATUS"
/>
<result
property=
"ysdHandleStatus"
column=
"YSD_HANDLE_STATUS"
/>
<result
property=
"ygsRemark"
column=
"YGS_REMARK"
/>
<result
property=
"ysdRemark"
column=
"YSD_REMARK"
/>
<result
property=
"ygsRemarkOld"
column=
"YGS_REMARK_OLD"
/>
<result
property=
"ysdRemarkOld"
column=
"YSD_REMARK_OLD"
/>
</resultMap>
<!-- hgw 2024-5-10 10:42:33 社保士兵列表查询 -->
<!-- hgw 2024-5-10 10:42:33 社保士兵列表查询 -->
<select
id=
"getTSocialSoldierHandlePage"
resultMap=
"
dispatch
PageMap"
>
<select
id=
"getTSocialSoldierHandlePage"
resultMap=
"
socialSoldier
PageMap"
>
SELECT
SELECT
<include
refid=
"Base_Column_List"
/>
<include
refid=
"Base_Column_List"
/>
,a.SOCIAL_HOUSEHOLD_NAME,s.YGS_HANDLE_STATUS,s.YSD_HANDLE_STATUS
,a.SOCIAL_HOUSEHOLD_NAME,s.YGS_HANDLE_STATUS,s.YSD_HANDLE_STATUS
...
...
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