zxl
5 天以前 7c038921c9242db70ea751ac45f6cdc6c35e4a2e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package cn.lili.modules.lmk.domain.query;
 
import cn.lili.base.AbsQuery;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
@Data
@ApiModel(value = "Activity查询参数", description = "活动查询参数")
public class ActivityQuery extends AbsQuery {
    /**
     * 活动名
     */
    private String activityName;
    /**
     * 活动类型
     */
    private String activityType;
 
    /**
     * 是否推荐
     */
    private Boolean recommend;
 
    /**
     * 是否审核
     */
    private Boolean audit;
 
    /**
     * 报名开始时时间
     */
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date reportStartTime;
    /**
     * 报名结束时间
     */
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date reportEndTime;
 
    /**
     * 申请活动用户id
     */
    private String memberId;
 
    /**
     * 申请互动的店铺id
     */
    private String storeId;
 
 
}