| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Map; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | import com.sandu.common.mybatis.JsonIntegerArrayTypeHandler; |
| | | import lombok.Data; |
| | | |
| | |
| | | /** |
| | | * 适用系列 |
| | | */ |
| | | @JsonIgnore |
| | | private Integer applySeries; |
| | | |
| | | /** |
| | | * 日期范围/开 |
| | | */ |
| | | @JsonIgnore |
| | | private String startDate; |
| | | |
| | | /** |
| | | * 日期范围/关 |
| | | */ |
| | | @JsonIgnore |
| | | private String endDate; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 星期范围 |
| | | */ |
| | | @JsonIgnore |
| | | @TableField(typeHandler = JsonIntegerArrayTypeHandler.class) |
| | | private Integer[] weekDays; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 开播时间 |
| | | */ |
| | | @JsonIgnore |
| | | private String startTime; |
| | | |
| | | /** |
| | | * 下播时间 |
| | | */ |
| | | @JsonIgnore |
| | | private String endTime; |
| | | |
| | | /** |
| | | * schedule实体 |
| | | */ |
| | | @JsonIgnore |
| | | private String schedule; |
| | | |
| | | /** |
| | |
| | | private LocalDateTime updateTime; |
| | | |
| | | @TableField(exist = false) |
| | | private Map plan; |
| | | |
| | | @TableField(exist = false) |
| | | private static final long serialVersionUID = 1L; |
| | | } |