海纳川变更 10923 10894

yun-zuoyi
wynne1005 5 years ago
parent 456741c116
commit 696695ef0e

@ -5427,4 +5427,24 @@ public class MesPcnEnumUtil {
}
}
/**
*
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum BOARD_MONITOR_OBJECT_TYPE {
ORGANIZE("10"),
WORK_SHOP("20"),
WORK_CENTER("30");
private String value;
BOARD_MONITOR_OBJECT_TYPE(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}
}

@ -11,6 +11,7 @@ import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.persistence.Transient;
import java.io.Serializable;
/**
@ -45,4 +46,8 @@ public class MesBoardDisplay extends BaseBean implements Serializable {
@Column(name = "ROLL_SPEED")
@ApiParam("滚动速度")
private Integer rollSpeed;
@Transient
@ApiParam("跑马灯字体颜色")
private String fontColor;
}

Loading…
Cancel
Save