|
|
|
@ -20,12 +20,12 @@ public class MesPackageQueryModel extends MesPackage {
|
|
|
|
|
@ApiParam("工序名称")
|
|
|
|
|
private String processName;
|
|
|
|
|
|
|
|
|
|
@ApiParam("工位")
|
|
|
|
|
private String workCellName;
|
|
|
|
|
|
|
|
|
|
@ApiParam("产线")
|
|
|
|
|
private String workCenterName;
|
|
|
|
|
|
|
|
|
|
@ApiParam("工作单元名称")
|
|
|
|
|
private String workCellName;
|
|
|
|
|
|
|
|
|
|
@ApiParam("是否封箱Name")
|
|
|
|
|
private String isSealedName;
|
|
|
|
|
|
|
|
|
@ -34,7 +34,14 @@ public class MesPackageQueryModel extends MesPackage {
|
|
|
|
|
this.workCellName = workCellName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public MesPackageQueryModel(String packageNo, String partNo, String partNameRdd, Double qty, Double packSpecQty, String unit, String lotNo, String fixLotNo, String packSpec, Integer printStatus, Integer isSealed, Integer packLevel, String workOrderNo, String memo, String workCenterCode, String workCellCode, String custCode, String inLocationTime, String ctNo, String sampleType, String packageLabelTemplate, String qrCode, String locationCode, String erpWorkCenterCode, String fnLocationNo,String processName, String workCenterName, String workCellName) {
|
|
|
|
|
public MesPackageQueryModel(String packageNo, String partNo, String partNameRdd, Double qty, Double packSpecQty, Integer isSealed, String ctNo, String processName, String workCellName, String workCenterName) {
|
|
|
|
|
super(packageNo, partNo, partNameRdd, qty, packSpecQty, isSealed, ctNo);
|
|
|
|
|
this.processName = processName;
|
|
|
|
|
this.workCellName = workCellName;
|
|
|
|
|
this.workCenterName = workCenterName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public MesPackageQueryModel(String packageNo, String partNo, String partNameRdd, Double qty, Double packSpecQty, String unit, String lotNo, String fixLotNo, String packSpec, Integer printStatus, Integer isSealed, Integer packLevel, String workOrderNo, String memo, String workCenterCode, String workCellCode, String custCode, String inLocationTime, String ctNo, String sampleType, String packageLabelTemplate, String qrCode, String locationCode, String erpWorkCenterCode, String fnLocationNo, String processName, String workCenterName, String workCellName) {
|
|
|
|
|
super(packageNo, partNo, partNameRdd, qty, packSpecQty, unit, lotNo, fixLotNo, packSpec, printStatus, isSealed, packLevel, workOrderNo, memo, workCenterCode, workCellCode, custCode, inLocationTime, ctNo, sampleType, packageLabelTemplate, qrCode, locationCode, erpWorkCenterCode, fnLocationNo);
|
|
|
|
|
this.processName=processName;
|
|
|
|
|
this.workCenterName = workCenterName;
|
|
|
|
|