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;
|
|
}
|