Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
haoban3.0
haoban-manage3.0
Commits
10979da2
Commit
10979da2
authored
Jul 12, 2022
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
列表查询
parent
2e406df0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
HmLinkController.java
...gic/haoban/manage/web/controller/hm/HmLinkController.java
+9
-7
No files found.
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/controller/hm/HmLinkController.java
View file @
10979da2
...
...
@@ -20,6 +20,7 @@ import com.gic.api.base.commons.BasePageInfo;
import
com.gic.api.base.commons.Page
;
import
com.gic.api.base.commons.ServiceResponse
;
import
com.gic.commons.util.EntityUtil
;
import
com.gic.commons.util.PageHelperUtils
;
import
com.gic.commons.webapi.reponse.RestResponse
;
import
com.gic.haoban.base.api.common.pojo.dto.WebLoginDTO
;
import
com.gic.haoban.common.utils.AuthWebRequestUtil
;
...
...
@@ -28,7 +29,6 @@ import com.gic.haoban.manage.api.dto.hm.HmLinkStoreSettingDTO;
import
com.gic.haoban.manage.api.dto.hm.HmPageDTO
;
import
com.gic.haoban.manage.api.dto.hm.WxUserAddLogDTO
;
import
com.gic.haoban.manage.api.dto.qdto.hm.HmLinkSearchQDTO
;
import
com.gic.haoban.manage.api.dto.qdto.hm.WxUserAddLogQDTO
;
import
com.gic.haoban.manage.api.dto.qdto.hm.WxUserAddLogSearchQDTO
;
import
com.gic.haoban.manage.api.dto.welcome.dto.WelcomeDetailDTO
;
import
com.gic.haoban.manage.api.service.hm.HmLinkApiService
;
...
...
@@ -509,13 +509,15 @@ public class HmLinkController {
@RequestMapping
(
"statistics/log"
)
public
RestResponse
<
Object
>
statisticsDetail
(
Long
linkId
,
String
clerkId
,
Date
startTime
,
Date
endTime
,
BasePageInfo
basePageInfo
)
{
List
<
WxUserAddLogVO
>
list
=
new
ArrayList
<>();
list
.
add
(
new
WxUserAddLogVO
());
Page
<
WxUserAddLogVO
>
page
=
new
Page
<>();
page
.
setResult
(
list
);
WxUserAddLogSearchQDTO
qdto
=
new
WxUserAddLogSearchQDTO
();
ServiceResponse
<
Page
<
WxUserAddLogDTO
>>
pageResp
=
this
.
wxUserAddLogApiService
.
page
(
qdto
,
basePageInfo
);
return
RestResponse
.
successResult
(
pageResp
.
getResult
());
qdto
.
setLinkId
(
linkId
);
qdto
.
setClerkId
(
clerkId
);
qdto
.
setStartTime
(
startTime
);
qdto
.
setEndTime
(
endTime
);
ServiceResponse
<
Page
<
WxUserAddLogDTO
>>
pageResp
=
this
.
wxUserAddLogApiService
.
page
(
qdto
,
basePageInfo
);
Page
<
WxUserAddLogVO
>
retPage
=
PageHelperUtils
.
changePageHelperToCurrentPage
(
pageResp
.
getResult
().
getResult
(),
WxUserAddLogVO
.
class
);
return
RestResponse
.
successResult
(
retPage
);
}
}
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