|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.mes.pcn.model;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.MesPcnEnumUtil;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
@ -41,6 +42,20 @@ public class QueueJisModel implements Serializable {
|
|
|
|
|
@ApiParam("产品条码")
|
|
|
|
|
private String serialNumber;
|
|
|
|
|
|
|
|
|
|
@ApiParam("状态名称")
|
|
|
|
|
private String statusName;
|
|
|
|
|
|
|
|
|
|
@ApiParam("明细状态名称")
|
|
|
|
|
private String detailStatusName;
|
|
|
|
|
|
|
|
|
|
public String getStatusName() {
|
|
|
|
|
return MesPcnEnumUtil.MES_QUEUE_JIS_STATUS.valueOfDescription(this.status);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDetailStatusName() {
|
|
|
|
|
return MesPcnEnumUtil.MES_QUEUE_JIS_STATUS.valueOfDescription(this.detailStatus);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public QueueJisModel() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -57,4 +72,5 @@ public class QueueJisModel implements Serializable {
|
|
|
|
|
this.detailStatus = detailStatus;
|
|
|
|
|
this.serialNumber = serialNumber;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|