2021与蓝度共同重构项目,服务端
liuhaonan
2022-11-04 2611d27616bdbea6331f75a0147bd67c95f2eb0e
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
58
59
60
61
62
63
64
65
66
67
package com.sandu.ximon.admin.param;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.sandu.common.mybatis.JsonIntegerArrayTypeHandler;
import lombok.Data;
 
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
import java.util.Map;
 
@Data
public class PlayPlanParam {
 
 
    private Long id;
 
    @NotEmpty(message = "播放计划名称不能为空")
    private String name;
    @NotEmpty(message = "节目名称不能为空")
    private String ledProgramName;
    @NotNull(message = "节目id不能为空")
    private Long ledProgramId;
    @NotEmpty(message = "音量不能为空")
    //音量
    private String volume;
 
    /**
     * 适用系列
     */
    private Integer applySeries;
 
    /**
     * 日期范围/开
     */
 
    private String startDate;
 
    /**
     * 日期范围/关
     */
 
    private String endDate;
 
    /**
     * 星期范围
     */
 
    @TableField(typeHandler = JsonIntegerArrayTypeHandler.class)
    private Integer[] weekDays;
 
    /**
     * schedule实体
     */
    private Map schedule;
 
    /**
     * 开播时间
     */
 
    private String startTime;
 
    /**
     * 下播时间
     */
 
    private String endTime;
}