生产队列,生产计划,生产工单优化和bug修复

Signed-off-by: crish <570360737@qq.com>
yun-zuoyi
crish 6 years ago
parent 50ee467eb6
commit 1efd33975d

@ -681,4 +681,33 @@ public class MesEnumUtil {
return tmp;
}
}
/**
*
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum COMMON_SN {
QUEUE_SN("QUEUE_SN", "队列条码");
private String code;
private String description;
int value;
COMMON_SN(String code, String description) {
this.code = code;
this.description = description;
}
public int getValue() {
return value;
}
public String getCode() {
return code;
}
public String getDescription() {
return description;
}
}
}

Loading…
Cancel
Save