yun-zuoyi
joke.wang 5 years ago
parent 867ecc6d71
commit 84dcf36c86

@ -4772,4 +4772,40 @@ public class MesPcnEnumUtil {
}
}
/**
* JIT
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum JIT_LOCK_CACHE_STATUS {
CREATE(10, "创建"),
RELEASE(20, "下达"),
ONLINE_COMPLETE(30, "上线完成");
private Integer value;
private String description;
JIT_LOCK_CACHE_STATUS(Integer value, String description) {
this.value = value;
this.description = description;
}
public Integer getValue() {
return value;
}
public String getDescription() {
return description;
}
public static String valueOfDescription(Integer value) {
String tmp = null;
for (int i = 0; i < values().length; i++) {
if (values()[i].value == value) {
tmp = values()[i].description;
}
}
return tmp;
}
}
}

@ -143,4 +143,8 @@ public class IfQueueShipping extends BaseBean implements Serializable {
@Column(name = "DOCK_NO")
@ApiParam("道口")
private String dockNo;
@Column(name = "VERSION")
@ApiParam("版本号")
private String version;
}

Loading…
Cancel
Save