Commit dcf88cb7 authored by hezhen's avatar hezhen

Merge branch 'master-chw' into dev-chw

parents 13c92001 40c7985f
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;
} }
...@@ -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);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment