2021与蓝度共同重构项目,服务端
LHN
2022-10-20 04598cd1d53ed99675f8142e632c71dc5fd87daa
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
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.sandu.ximon.admin.entity;
 
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @program: machine-fast
 * @description:
 * @author: YSS
 * @create: 2019-07-17 16:59
 **/
@Data
public class Source implements Serializable {
    private static final long serialVersionUID = 1L;
 
 
    private String id;
 
    private String _id;
 
    private String _type;
 
    private String md5;                //素材如果有大小需要计算它的md5
 
    private String name;                //素材名字
 
    private int left;                //显示在左上角的坐标
 
    private int top;
 
    private int width;                //宽高
 
    private int height;
 
    private long size;                //文件大小
 
    private int playTime;            //起始播放时间
 
    private int timeSpan;            //持续播放时长
 
    private String fileExt;
 
    private String mime;
 
}