2021与蓝度共同重构项目,服务端
liuhaonan
2022-10-28 d938c951a1669b4df877ffc6521aef17f0fac809
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
package com.sandu.ximon.admin.entity;
 
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @program: machine-fast
 * @description: 字幕设置接受类
 * @author: YSS
 * @create: 2019-04-24 18:14
 **/
@Data
public class SubTitleSetEntity implements Serializable {
 
    private Long[] id;
 
    private String color;
 
    private String content;
 
    private String fontSize;
 
    private String fontColor;
 
    private Integer num;
 
    private Integer interval;
 
    private Integer step;
 
    private String direction;
 
    private String align;
 
    private Integer textType;
 
}