Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cloud-web
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
hqzhdj
cloud-web
Commits
9d2ecab2
Commit
9d2ecab2
authored
Oct 21, 2025
by
“Kongxiangkun”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加积分商城相关代码
parent
527d069a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
cloud-web-manage/src/main/java/com/yizhi/application/point/controller/PointController.java
+5
-9
No files found.
cloud-web-manage/src/main/java/com/yizhi/application/point/controller/PointController.java
View file @
9d2ecab2
...
...
@@ -7,6 +7,7 @@ import com.yizhi.course.application.vo.RangeImportParamVo;
import
com.yizhi.point.application.feign.PointFeignClients
;
import
com.yizhi.point.application.feign.PointManageFeignClients
;
import
com.yizhi.point.application.vo.PointDetailsVO
;
import
com.yizhi.point.application.vo.PointSearchParamVO
;
import
com.yizhi.point.application.vo.domain.PointVo
;
import
com.yizhi.statistics.application.feign.StatisticsPointClient
;
import
com.yizhi.statistics.application.request.point.StatisticsPointDetailQO
;
...
...
@@ -87,13 +88,8 @@ public class PointController {
}
@ApiOperation
(
value
=
"积分流水明细"
,
notes
=
"积分流水明细"
,
response
=
PointDetailsVO
.
class
)
@GetMapping
(
"/details/list"
)
Response
<
Object
>
getManagePointDetails
(
@ApiParam
(
value
=
"类型"
,
required
=
false
)
@RequestParam
(
name
=
"learnType"
,
required
=
false
)
String
learnType
,
@ApiParam
(
value
=
"用户"
,
required
=
false
)
@RequestParam
(
name
=
"accountName"
,
required
=
false
)
String
accountName
,
@ApiParam
(
value
=
"查询开始日期,时间戳"
,
required
=
false
)
@RequestParam
(
name
=
"startTime"
,
required
=
false
)
Long
startTime
,
@ApiParam
(
value
=
"查询结束日期,时间戳"
,
required
=
false
)
@RequestParam
(
name
=
"endTime"
,
required
=
false
)
Long
endTime
,
@ApiParam
(
value
=
"页码"
,
required
=
false
)
@RequestParam
(
name
=
"pageNo"
,
required
=
false
,
defaultValue
=
"1"
)
Integer
pageNo
,
@ApiParam
(
value
=
"每页显示页数"
,
required
=
false
)
@RequestParam
(
name
=
"pageSize"
,
required
=
false
,
defaultValue
=
"10"
)
Integer
pageSize
)
{
@PostMapping
(
"/details/list"
)
Response
<
Object
>
getManagePointDetails
(
@RequestBody
PointSearchParamVO
searchParamVO
)
{
RequestContext
requestContext
=
ContextHolder
.
get
();
if
(
null
==
requestContext
)
{
Response
.
fail
();
...
...
@@ -101,8 +97,8 @@ public class PointController {
Long
companyId
=
requestContext
.
getCompanyId
();
Long
siteId
=
requestContext
.
getSiteId
();
try
{
Page
<
PointDetailsVO
>
page
=
pointManageFeignClients
.
getManagePointDetails
(
learnType
,
accountName
,
s
tartTime
,
endTime
,
pageNo
,
pageSize
,
companyId
,
siteId
);
Page
<
PointDetailsVO
>
page
=
pointManageFeignClients
.
getManagePointDetails
(
searchParamVO
.
getLearnType
(),
searchParamVO
.
getName
()
,
s
earchParamVO
.
getStartTime
(),
searchParamVO
.
getEndTime
(),
searchParamVO
.
getPageNo
(),
searchParamVO
.
getPageSize
()
,
companyId
,
siteId
);
return
Response
.
ok
(
page
);
}
catch
(
Exception
e
)
{
LOG
.
error
(
"服务出错。"
,
e
);
...
...
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