|
|
|
@ -5,15 +5,11 @@ import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import javax.persistence.Inheritance;
|
|
|
|
|
import javax.persistence.InheritanceType;
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -75,9 +71,9 @@ public class AndonBroadCast extends BaseBean implements Serializable {
|
|
|
|
|
@ApiParam("广播内容编码格式")
|
|
|
|
|
private String textEncode = "UTF-8";
|
|
|
|
|
|
|
|
|
|
@Column(name="PLAY_SPEED")
|
|
|
|
|
@Column(name = "PLAY_SPEED", columnDefinition = "decimal(18,8)")
|
|
|
|
|
@ApiParam("播放语速")
|
|
|
|
|
private Integer playSpeed = 0;
|
|
|
|
|
private Double playSpeed = 0d;
|
|
|
|
|
|
|
|
|
|
@Column(name = "PLAY_TIME")
|
|
|
|
|
@ApiParam("播放循环次数")
|
|
|
|
|