2021与蓝度共同重构项目,服务端
liuhaonan
2022-10-21 680ff9e2cca45bcb23e373aaa221a1e1dfab2472
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
package com.sandu.ximon.admin.entity;
 
import com.sandu.ximon.dao.domain.LedSFile;
import lombok.Data;
 
import javax.validation.constraints.NotEmpty;
import java.util.List;
 
@Data
public class ProgramPro {
    private Long programId;
    private String  _id;                    //请使用UUID赋值
    private String name;                    //好记的名字
    private String ScreenShot;
    private Long width;                    //节目宽
    private Long height;                    //节目高度
    private List<LayerPro> layers;            //所有素材都包含在该list中
    private Long totalSize;                //将layers中的sources的size累加赋值给他,表示节目所有素材占用的空间
    //如果为true,则该节目来自第三方接口,不是来自我们自己的web,二次开发请务必赋值为true
    private boolean isOthers=true;
    private int version;                    //2为简易节目,9为定点节目,其他为高级节目,请赋值其他。
 
    private List<LedSFile> fileList;
 
}