@ -2908,7 +2908,8 @@ public class MesPcnEnumUtil {
*/
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum CACHA_QUEUE_STATUS {
CREATE(10, "创建");
CREATE(10, "创建"),
COMPLETE(20, "完成");
private int value;
private String description;
@ -42,4 +42,8 @@ public class MesCachaQueue extends BaseBean implements Serializable {
@ApiParam("缓存类型")
private String cachaType;
@Column(name = "PART_NO")
@ApiParam("物料号")
private String partNo;
}