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
597c2d52
Commit
597c2d52
authored
Jun 18, 2024
by
fangxinjiang
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/MVP1.6.6' into MVP1.6.6
parents
1ce7aa8a
23b23d29
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
TAutoPaymentDetail.java
.../cloud/plus/v1/yifu/social/entity/TAutoPaymentDetail.java
+4
-4
TAutoPaymentDetailServiceImpl.java
...fu/social/service/impl/TAutoPaymentDetailServiceImpl.java
+2
-1
No files found.
yifu-social/yifu-social-api/src/main/java/com/yifu/cloud/plus/v1/yifu/social/entity/TAutoPaymentDetail.java
View file @
597c2d52
...
...
@@ -54,7 +54,7 @@ public class TAutoPaymentDetail extends BaseEntity {
/**
* 是否重新办理 0 是 1 否
*/
@ExcelAttribute
(
name
=
"是否重新办理 0 是 1 否"
,
maxLength
=
1
)
@ExcelAttribute
(
name
=
"是否重新办理 0 是 1 否"
,
maxLength
=
1
,
readConverterExp
=
"0=是,1=否"
)
@Length
(
max
=
1
,
message
=
"是否重新办理 0 是 1 否不能超过1个字符"
)
@ExcelProperty
(
"是否重新办理"
)
@Schema
(
description
=
"是否重新办理 0 是 1 否"
)
...
...
@@ -161,12 +161,12 @@ public class TAutoPaymentDetail extends BaseEntity {
@Schema
(
description
=
"社保户"
)
private
String
socialSecurityAccount
;
/**
* 资源类型:1日常申报导出;2
人员缴费明细打印
;3单位缴费明细查询;4单位缴费明细下载
* 资源类型:1日常申报导出;2
单位个人缴费信息查询
;3单位缴费明细查询;4单位缴费明细下载
*/
@ExcelAttribute
(
name
=
"资源类型"
,
maxLength
=
100
)
@ExcelAttribute
(
name
=
"资源类型"
,
maxLength
=
100
,
readConverterExp
=
"1=日常申报导出,2=单位个人缴费信息查询,3=单位缴费明细查询,4=单位缴费明细下载"
)
@Length
(
max
=
100
,
message
=
"资源类型不能超过100个字符"
)
@ExcelProperty
(
"资源类型"
)
@Schema
(
description
=
"资源类型:1日常申报导出;2
人员缴费明细打印
;3单位缴费明细查询;4单位缴费明细下载"
)
@Schema
(
description
=
"资源类型:1日常申报导出;2
单位个人缴费信息查询
;3单位缴费明细查询;4单位缴费明细下载"
)
private
String
sourceType
;
/**
...
...
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TAutoPaymentDetailServiceImpl.java
View file @
597c2d52
...
...
@@ -173,7 +173,8 @@ public class TAutoPaymentDetailServiceImpl extends ServiceImpl<TAutoPaymentDetai
if
(
searchVo
.
getLimitStart
()
>=
0
&&
searchVo
.
getLimitEnd
()
>
0
)
{
wrapper
.
last
(
" limit "
+
searchVo
.
getLimitStart
()
+
","
+
searchVo
.
getLimitEnd
());
}
wrapper
.
orderByDesc
(
BaseEntity:
:
getCreateTime
);
wrapper
.
orderByAsc
(
TAutoPaymentDetail:
:
getSourceType
);
wrapper
.
orderByAsc
(
BaseEntity:
:
getCreateTime
);
return
baseMapper
.
selectList
(
wrapper
);
}
...
...
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