zxl
2025-05-21 686007a5b6264a5193f73ec7ee4995fdbb49a4b3
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
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;
    /**
     * 报名开始时时间
     */
    @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;
}