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:运行中 其它:异常 }