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
| package com.sandu.ximon.dao.domain;
|
| import com.baomidou.mybatisplus.annotation.TableField;
| import lombok.Data;
|
| @Data
| public class BroadcastTaskV2Entity {
|
| private Integer taskId;
|
| private String taskName;
|
| private Long userId;
|
| private String userName;
|
| private Long timestamp;
|
| private Integer vol;
| // 任务播放状态(空闲 0、播放中 1、暂停 2)
| private Integer ps;
|
| @TableField(exist = false)
| private Integer exe; // 运行状态 -1:不存在服务器 0:空闲 1:运行中 其它:异常
|
|
|
| }
|
|