包装查询报表

yun-zuoyi
廖湘明 5 years ago
parent d089d0fba8
commit 61364e2170

@ -246,4 +246,32 @@ public class MesPackage extends BaseBean implements Serializable {
this.custCode = custCode;
this.shiftGroup = shiftGroup;
}
public MesPackage(String packageNo, String partNo, String partNameRdd, Double qty,Double packSpecQty, String unit,String lotNo, String fixLotNo,String packSpec,Integer isSealed, Integer printStatus,Integer packLevel,String workOrderNo, String workCenterCode, String workCellCode,String memo, String custCode, String inLocationTime, String ctNo,String sampleType, String packageLabelTemplate, String qrCode, String locationCode, String erpWorkCenterCode, String fnLocationNo) {
this.packageNo = packageNo;
this.partNo = partNo;
this.partNameRdd = partNameRdd;
this.qty = qty;
this.packSpecQty=packSpecQty;
this.unit = unit;
this.lotNo=lotNo;
this.fixLotNo = fixLotNo;
this.packSpec=packSpec;
this.isSealed=isSealed;
this.printStatus = printStatus;
this.packLevel=packLevel;
this.workOrderNo=workOrderNo;
this.workCenterCode = workCenterCode;
this.workCellCode = workCellCode;
this.memo=memo;
this.custCode = custCode;
this.inLocationTime = inLocationTime;
this.ctNo = ctNo;
this.sampleType=sampleType;
this.packageLabelTemplate = packageLabelTemplate;
this.qrCode = qrCode;
this.locationCode = locationCode;
this.erpWorkCenterCode = erpWorkCenterCode;
this.fnLocationNo = fnLocationNo;
}
}

@ -0,0 +1,52 @@
package cn.estsh.i3plus.pojo.mes.model;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.math.BigDecimal;
/**
* @Author: xiangming.liao
* @CreateDate: 2020/12/22 14:38
* @Description: model
**/
@Api("每个月的冻结数、报废数、生产总数返回model")
@Data
public class MesProduceSnDisposableModel {
@ApiParam("统计时间")
private String statisticalTime;
@ApiParam("质量状态/类型")
private Integer qcStatus;
@ApiParam("统计选项")
private String statisticalOption;
@ApiParam("冻结数")
private BigDecimal freezeQty;
@ApiParam("报废数")
private BigDecimal scrapQty;
@ApiParam("生产总数")
private BigDecimal produceSumQty;
@ApiParam("占比率")
private BigDecimal ratio;
public MesProduceSnDisposableModel(String statisticalTime, Integer qcStatus, String statisticalOption, BigDecimal freezeQty, BigDecimal scrapQty, BigDecimal produceSumQty, BigDecimal ratio) {
this.statisticalTime = statisticalTime;
this.qcStatus = qcStatus;
this.statisticalOption = statisticalOption;
this.freezeQty = freezeQty;
this.scrapQty = scrapQty;
this.produceSumQty = produceSumQty;
this.ratio = ratio;
}
public MesProduceSnDisposableModel() {
}
}
Loading…
Cancel
Save