|
|
@ -2908,7 +2908,8 @@ public class MesPcnEnumUtil {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
|
|
|
|
public enum CACHA_QUEUE_STATUS {
|
|
|
|
public enum CACHA_QUEUE_STATUS {
|
|
|
|
CREATE(10, "创建");
|
|
|
|
CREATE(10, "创建"),
|
|
|
|
|
|
|
|
COMPLETE(20, "完成");
|
|
|
|
|
|
|
|
|
|
|
|
private int value;
|
|
|
|
private int value;
|
|
|
|
private String description;
|
|
|
|
private String description;
|
|
|
|