| | |
| | | |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotEmpty; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | |
| | | private Long programId; |
| | | private String _id; //请使用UUID赋值 |
| | | private String name; //好记的名字 |
| | | private int width; //节目宽 |
| | | private int height; //节目高度 |
| | | private String ScreenShot; |
| | | private Long width; //节目宽 |
| | | private Long height; //节目高度 |
| | | private List<LayerPro> layers; //所有素材都包含在该list中 |
| | | private long totalSize; //将layers中的sources的size累加赋值给他,表示节目所有素材占用的空间 |
| | | private Long totalSize; //将layers中的sources的size累加赋值给他,表示节目所有素材占用的空间 |
| | | //如果为true,则该节目来自第三方接口,不是来自我们自己的web,二次开发请务必赋值为true |
| | | private boolean isOthers=true; |
| | | private int version; //2为简易节目,9为定点节目,其他为高级节目,请赋值其他。 |
| | | |
| | | } |