@ -4566,4 +4566,23 @@ public class MesPcnEnumUtil {
}
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum MES_PTL_IS_LIGHT {
IS_PICK_LIGHT(10, "不需亮灯");
private int value;
private String description;
MES_PTL_IS_LIGHT(int value, String description) {
this.value = value;
this.description = description;
public int getValue() {
return value;