新增过程检测 检测结果枚举

yun-zuoyi
wynne1005 5 years ago
parent 531fe743c2
commit dd1ece9be8

@ -3779,7 +3779,7 @@ public class MesPcnEnumUtil {
*
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum CHECK_REULST {
public enum CHECK_RESULT {
PASS(10, "通过"),
NON_PASS(20, "不通过"),
@ -3788,7 +3788,7 @@ public class MesPcnEnumUtil {
private int value;
private String description;
CHECK_REULST(int value, String description) {
CHECK_RESULT(int value, String description) {
this.value = value;
this.description = description;
}
@ -5284,4 +5284,24 @@ public class MesPcnEnumUtil {
}
}
/**
*
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum QC_CHECK_VALUE_RESULT {
OK(10),
NOT_OK(20),
MANUAL(30);
private int value;
QC_CHECK_VALUE_RESULT(int value) {
this.value = value;
}
public int getValue() {
return value;
}
}
}

Loading…
Cancel
Save