Merge remote-tracking branch 'remotes/origin/dev' into test

yun-zuoyi
汪云昊 6 years ago
commit 163cb6240e

@ -441,4 +441,37 @@ public class AndonEnumUtil {
}
}
/**
*
* <per>
* <br/> 10 =
* <br/> 20 =
* <br/> 30 =
* <br/> 40 =
* </per>
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum ANDON_IMPORTANCE_LEVEL{
FIRST_LEVEL("10","一级"),
SECOND_LEVEL("20","二级"),
THIRD_LEVEL("30","三级"),
FORTH_LEVEL("40","四级");
private String value;
private String code;
private String description;
ANDON_IMPORTANCE_LEVEL(String value,String description) {
this.value = value;
this.description = description;
}
public String getValue() {
return value;
}
public String getDescription() {
return description;
}
}
}

Loading…
Cancel
Save