ANDON实体枚举更新

yun-zuoyi
柯裕 6 years ago
parent 56e17f62e9
commit 95789ab615

@ -181,7 +181,7 @@ public class AndonManageQueue extends BaseBean {
@Column(name = "EC_DESC") @Column(name = "EC_DESC")
@ApiParam(value = "事件具体原因") @ApiParam(value = "事件具体原因")
private String ec_desc; private String ecDesc;
@Column(name = "EM_CODE") @Column(name = "EM_CODE")
@ApiParam(value = "事件方法代码") @ApiParam(value = "事件方法代码")

@ -181,7 +181,7 @@ public class AndonManageRecord extends BaseBean {
@Column(name = "EC_DESC") @Column(name = "EC_DESC")
@ApiParam(value = "事件具体原因") @ApiParam(value = "事件具体原因")
private String ec_desc; private String ecDesc;
@Column(name = "EM_CODE") @Column(name = "EM_CODE")
@ApiParam(value = "事件方法代码") @ApiParam(value = "事件方法代码")

@ -150,15 +150,14 @@ public class AndonEnumUtil {
/** /**
* *
* 1 - 2 - 3 - 4 - * 10 - 20 - 30 -
*/ */
@JsonFormat(shape = JsonFormat.Shape.OBJECT) @JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum ALARM_PRIORITY{ public enum ALARM_PRIORITY{
FIRST(1,"一级"), FIRST(10,"一级"),
SECOND(2,"二级"), SECOND(20,"二级"),
THIRD(3,"三级"), THIRD(30,"三级");
FOURTH(4,"四级");
private int value; private int value;
private String description; private String description;

Loading…
Cancel
Save