yun-zuoyi
陈思洁 5 years ago
commit a093f06edc

@ -184,6 +184,10 @@ public class MesQueueOrderDetail extends BaseBean implements Serializable {
@ApiParam("队列类型") @ApiParam("队列类型")
private Integer queueType; private Integer queueType;
@Transient
@ApiParam("等级名称")
private String gradeName;
public double getQueueSeqVal() { public double getQueueSeqVal() {
return this.queueSeq == null ? 0.0d : this.queueSeq; return this.queueSeq == null ? 0.0d : this.queueSeq;
} }

@ -51,6 +51,10 @@ public class MesStep extends BaseBean implements Serializable {
@ApiParam("工步对象") @ApiParam("工步对象")
private String stepObject; private String stepObject;
@Column(name = "TRIGGER_TYPE")
@ApiParam("触发类型")
private Integer triggerType;
/** /**
* 使 * 使
*/ */

@ -82,11 +82,15 @@ public class StepModel implements Serializable {
@ApiParam("工作单元代码") @ApiParam("工作单元代码")
private String workCellCode; private String workCellCode;
@ApiParam("触发类型")
private Integer triggerType;
public StepModel() { public StepModel() {
} }
public StepModel(String stepCode, String stepName, String stepText, String stepType, String stepObject, public StepModel(String stepCode, String stepName, String stepText, String stepType, String stepObject,
String routeCode, String processCode, Integer stepSeq, String paramCode, String stepDisplayName, String workCellCode) { String routeCode, String processCode, Integer stepSeq, String paramCode, String stepDisplayName,
String workCellCode, Integer triggerType) {
this.stepCode = stepCode; this.stepCode = stepCode;
this.stepName = stepName; this.stepName = stepName;
this.stepText = stepText; this.stepText = stepText;
@ -98,5 +102,6 @@ public class StepModel implements Serializable {
this.paramCode = paramCode; this.paramCode = paramCode;
this.stepDisplayName = stepDisplayName; this.stepDisplayName = stepDisplayName;
this.workCellCode = workCellCode; this.workCellCode = workCellCode;
this.triggerType = triggerType;
} }
} }

@ -122,5 +122,7 @@ public class StepPrintSnModel extends MesProduceSn {
private String shiftName; private String shiftName;
@ApiParam("JIT排序号") @ApiParam("JIT排序号")
private String jitSeq; private String jitSeq;
@ApiParam("产品位置名称")
private String produceCategoryName;
} }

@ -90,9 +90,9 @@ public class WmsMoveMaster extends BaseBean {
private String partNo; private String partNo;
@Transient @Transient
@ApiParam("状态") @ApiParam("明细状态")
@AnnoOutputColumn(refClass = WmsEnumUtil.MOVE_ORDER_STATUS.class, refForeignKey = "value", value = "description") @AnnoOutputColumn(refClass = WmsEnumUtil.MOVE_ORDER_STATUS.class)
private Integer itemStatus; private String itemStatus;
@Transient @Transient
@ApiParam("erp库存地") @ApiParam("erp库存地")
@ -135,10 +135,14 @@ public class WmsMoveMaster extends BaseBean {
private String srcZoneNo; private String srcZoneNo;
@Transient @Transient
@ApiParam("处理数量") @ApiParam("需求数量")
private Double transQty; private Double transQty;
@Transient @Transient
@ApiParam("处理数量")
private Double handledQty;
@Transient
@ApiParam("不合格处理数量") @ApiParam("不合格处理数量")
private Double rejectQty; private Double rejectQty;
@ -197,7 +201,7 @@ public class WmsMoveMaster extends BaseBean {
this.errorMessage = errorMessage; this.errorMessage = errorMessage;
this.busiTypeCode = busiTypeCode; this.busiTypeCode = busiTypeCode;
this.partNo = partNo; this.partNo = partNo;
this.itemStatus = itemStatus; this.itemStatus = itemStatus.toString();
this.refOrderNo = refOrderNo; this.refOrderNo = refOrderNo;
this.carNo = carNo; this.carNo = carNo;
this.refSrc = refSrc; this.refSrc = refSrc;
@ -220,7 +224,7 @@ public class WmsMoveMaster extends BaseBean {
this.partNameRdd = partNameRdd; this.partNameRdd = partNameRdd;
this.transTypeCode = transTypeCode; this.transTypeCode = transTypeCode;
this.transTypeName = transTypeName; this.transTypeName = transTypeName;
this.itemStatus = itemStatus; this.itemStatus = itemStatus.toString();
this.unit = unit; this.unit = unit;
this.srcWhNo = srcWhNo; this.srcWhNo = srcWhNo;
this.srcZoneNo = srcZoneNo; this.srcZoneNo = srcZoneNo;
@ -237,22 +241,25 @@ public class WmsMoveMaster extends BaseBean {
this.modifyDatetime = modifyDatetime; this.modifyDatetime = modifyDatetime;
} }
public WmsMoveMaster(String orderNo, String organizeCode, String partNo, String partNameRdd, String transTypeCode, String transTypeName, Integer itemStatus, public WmsMoveMaster(String orderNo, String organizeCode, String partNo, String partNameRdd, String transTypeCode,
String unit, String srcWhNo, String srcZoneNo, String destWhNo, String destZoneNo, Double transQty, Double rejectQty, String fixId, Integer busiTypeCode, String transTypeName, Integer itemStatus,String unit, String srcWhNo, String srcZoneNo,
String createDatetime, String createUser, String modifyUser, String modifyDatetime, String refSrc) { String destWhNo, String destZoneNo, Double transQty,Double handledQty,Double rejectQty,
String fixId, Integer busiTypeCode,String createDatetime, String createUser, String modifyUser,
String modifyDatetime, String refSrc) {
this.orderNo = orderNo; this.orderNo = orderNo;
this.organizeCode = organizeCode; this.organizeCode = organizeCode;
this.partNo = partNo; this.partNo = partNo;
this.partNameRdd = partNameRdd; this.partNameRdd = partNameRdd;
this.transTypeCode = transTypeCode; this.transTypeCode = transTypeCode;
this.transTypeName = transTypeName; this.transTypeName = transTypeName;
this.itemStatus = itemStatus; this.itemStatus = itemStatus.toString();
this.unit = unit; this.unit = unit;
this.srcWhNo = srcWhNo; this.srcWhNo = srcWhNo;
this.srcZoneNo = srcZoneNo; this.srcZoneNo = srcZoneNo;
this.destWhNo = destWhNo; this.destWhNo = destWhNo;
this.destZoneNo = destZoneNo; this.destZoneNo = destZoneNo;
this.transQty = transQty; this.transQty = transQty;
this.handledQty = handledQty;
this.rejectQty = rejectQty; this.rejectQty = rejectQty;
this.fixId = fixId; this.fixId = fixId;
this.busiTypeCode = busiTypeCode; this.busiTypeCode = busiTypeCode;
@ -272,7 +279,7 @@ public class WmsMoveMaster extends BaseBean {
this.partNameRdd = partNameRdd; this.partNameRdd = partNameRdd;
this.transTypeCode = transTypeCode; this.transTypeCode = transTypeCode;
this.transTypeName = transTypeName; this.transTypeName = transTypeName;
this.itemStatus = itemStatus; this.itemStatus = itemStatus.toString();
this.unit = unit; this.unit = unit;
this.srcWhNo = srcWhNo; this.srcWhNo = srcWhNo;
this.srcZoneNo = srcZoneNo; this.srcZoneNo = srcZoneNo;

Loading…
Cancel
Save