Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fit-finance
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fitness-server
fit-finance
Commits
ebb74e8f
Commit
ebb74e8f
authored
Nov 19, 2024
by
吴一龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PageStudioAxfApplyRequest add merchantNo 分页查询安心付申请记录
parent
568b0008
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
api/src/main/java/com/jiejing/fitness/finance/api/axf/request/PageStudioAxfApplyRequest.java
+3
-0
repository/src/main/java/com/jiejing/fitness/finance/repository/service/StudioAxfApplyRpService.java
+4
-1
service/src/main/java/com/jiejing/fitness/finance/service/axf/impl/AxfServiceImpl.java
+2
-1
No files found.
api/src/main/java/com/jiejing/fitness/finance/api/axf/request/PageStudioAxfApplyRequest.java
View file @
ebb74e8f
...
...
@@ -30,6 +30,9 @@ public class PageStudioAxfApplyRequest {
@ApiModelProperty
(
value
=
"商户简称"
)
private
String
shortName
;
@ApiModelProperty
(
value
=
"支付宝pid"
)
private
String
merchantNo
;
@ApiModelProperty
(
value
=
"申请开始时间"
)
private
Date
createTimeStart
;
...
...
repository/src/main/java/com/jiejing/fitness/finance/repository/service/StudioAxfApplyRpService.java
View file @
ebb74e8f
...
...
@@ -57,7 +57,7 @@ public class StudioAxfApplyRpService extends MapperRepoService<Long, StudioAxfAp
}
public
org
.
springframework
.
data
.
domain
.
Page
<
StudioAxfApply
>
page
(
Long
studioId
,
String
instName
,
String
shortName
,
Date
createTimeStart
,
String
shortName
,
String
merchantNo
,
Date
createTimeStart
,
Date
createTimeEnd
,
List
<
AxfStateEnums
>
stateList
,
Integer
current
,
Integer
size
)
{
QueryWrapper
<
StudioAxfApply
>
wrapper
=
new
QueryWrapper
<>();
if
(
null
!=
studioId
)
{
...
...
@@ -69,6 +69,9 @@ public class StudioAxfApplyRpService extends MapperRepoService<Long, StudioAxfAp
if
(
StringUtils
.
isNotBlank
(
shortName
))
{
wrapper
.
like
(
StudioAxfApply
.
SHORT_NAME
,
shortName
);
}
if
(
StringUtils
.
isNotBlank
(
merchantNo
)){
wrapper
.
eq
(
StudioAxfApply
.
MERCHANT_NO
,
merchantNo
);
}
if
(
CollectionUtils
.
isNotEmpty
(
stateList
))
{
wrapper
.
in
(
StudioAxfApply
.
STATE
,
stateList
);
}
...
...
service/src/main/java/com/jiejing/fitness/finance/service/axf/impl/AxfServiceImpl.java
View file @
ebb74e8f
...
...
@@ -540,7 +540,8 @@ public class AxfServiceImpl implements AxfService {
public
PageVO
<
StudioAxfApplyVO
>
page
(
PageStudioAxfApplyRequest
request
)
{
org
.
springframework
.
data
.
domain
.
Page
<
StudioAxfApply
>
page
=
studioAxfApplyRpService
.
page
(
request
.
getStudioId
(),
request
.
getStudioName
(),
request
.
getShortName
(),
request
.
getCreateTimeStart
(),
request
.
getCreateTimeEnd
(),
request
.
getShortName
(),
request
.
getMerchantNo
(),
request
.
getCreateTimeStart
(),
request
.
getCreateTimeEnd
(),
request
.
getStateList
(),
request
.
getCurrent
(),
request
.
getSize
());
return
PageVO
.
convert
(
page
,
AxfConvert
.
toList
(
page
.
getContent
()));
}
...
...
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