Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
Project
Project
Details
Activity
Releases
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
youjj
cloud-platform
Commits
dcf88cb7
Commit
dcf88cb7
authored
Nov 20, 2020
by
hezhen
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master-chw' into dev-chw
parents
13c92001
40c7985f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
ActivityDTO.java
...main/java/com/xxfc/platform/activity/dto/ActivityDTO.java
+3
-0
ActivityController.java
...a/com/xxfc/platform/activity/rest/ActivityController.java
+1
-0
No files found.
xx-activity/xx-activity-api/src/main/java/com/xxfc/platform/activity/dto/ActivityDTO.java
View file @
dcf88cb7
package
com
.
xxfc
.
platform
.
activity
.
dto
;
package
com
.
xxfc
.
platform
.
activity
.
dto
;
import
com.github.wxiaoqi.security.common.vo.PageParam
;
import
com.github.wxiaoqi.security.common.vo.PageParam
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.AllArgsConstructor
;
import
lombok.AllArgsConstructor
;
import
lombok.Builder
;
import
lombok.Builder
;
import
lombok.Data
;
import
lombok.Data
;
...
@@ -26,5 +27,7 @@ public class ActivityDTO extends PageParam {
...
@@ -26,5 +27,7 @@ public class ActivityDTO extends PageParam {
private
Integer
type
;
private
Integer
type
;
private
Integer
userId
;
private
Integer
userId
;
private
Integer
activityId
;
private
Integer
activityId
;
@ApiModelProperty
(
value
=
"时间戳"
)
private
Long
time
;
}
}
xx-activity/xx-activity-server/src/main/java/com/xxfc/platform/activity/rest/ActivityController.java
View file @
dcf88cb7
...
@@ -26,6 +26,7 @@ public class ActivityController extends BaseController<ActivityBiz, Activity> {
...
@@ -26,6 +26,7 @@ public class ActivityController extends BaseController<ActivityBiz, Activity> {
@GetMapping
(
"app/unauth/selectList"
)
@GetMapping
(
"app/unauth/selectList"
)
@IgnoreUserToken
@IgnoreUserToken
public
ObjectRestResponse
<
PageDataVO
<
ActivityVo
>>
selectList
(
ActivityDTO
activityDTO
)
{
public
ObjectRestResponse
<
PageDataVO
<
ActivityVo
>>
selectList
(
ActivityDTO
activityDTO
)
{
activityDTO
.
setTime
(
System
.
currentTimeMillis
());
return
baseBiz
.
getAllByPage
(
activityDTO
);
return
baseBiz
.
getAllByPage
(
activityDTO
);
}
}
...
...
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