|
|
|
@ -9,10 +9,7 @@ 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.Transient;
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
import java.io.Serializable;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -64,4 +61,13 @@ public class AndonRouteStatusErrorRecord extends BaseBean implements Serializabl
|
|
|
|
|
@ApiParam(value = "安灯来源类型")
|
|
|
|
|
private String sourceType;
|
|
|
|
|
|
|
|
|
|
@Column(name = "CACHE_FLAG")
|
|
|
|
|
@ApiParam(value = "缓存标识")
|
|
|
|
|
private Integer cacheFlag;
|
|
|
|
|
|
|
|
|
|
@Lob
|
|
|
|
|
@Column(name = "CONTENT")
|
|
|
|
|
@ApiParam(value = "内容")
|
|
|
|
|
private String content;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|