2021与蓝度共同重构项目,服务端
liuhaonan
2022-10-21 0a30812acaa26ebe654340f7e749a6801b63b194
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
package com.sandu.ximon.dao.domain;
 
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * ip音柱设备/任务关联
 */
 
@Data
public class BroadcastTaskV2Entity implements Serializable {
 
    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:运行中   其它:异常
 
 
}