问题修复
parent
7c8e7dc38e
commit
5fad84018d
@ -0,0 +1,143 @@
|
||||
package com.op.quality.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
import com.op.system.api.domain.quality.ChartDTO;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 质量系统报对象 qc_static_table
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2023-11-08
|
||||
*/
|
||||
public class CheckTypeXJDetail extends BaseEntity {
|
||||
|
||||
@Excel(name = "订单编码")
|
||||
private String workorderCodeSap;
|
||||
@Excel(name = "工单编码")
|
||||
private String orderNo;
|
||||
@Excel(name = "产品编码")
|
||||
private String materialCode;
|
||||
@Excel(name = "产品名称")
|
||||
private String materialName;
|
||||
@Excel(name = "数量")
|
||||
private String quality;
|
||||
@Excel(name = "单位")
|
||||
private String unit;
|
||||
@Excel(name = "批次")
|
||||
private String batchCode;
|
||||
@Excel(name = "生产时间")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||
private String incomeTimeStr;
|
||||
@Excel(name = "班次")
|
||||
private String shiftId;
|
||||
@Excel(name = "线体名称")
|
||||
private String equipmentName;
|
||||
@Excel(name = "检验人")
|
||||
private String checkManName;
|
||||
@Excel(name = "检验时间")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private String checkTime;
|
||||
|
||||
public String getWorkorderCodeSap() {
|
||||
return workorderCodeSap;
|
||||
}
|
||||
|
||||
public void setWorkorderCodeSap(String workorderCodeSap) {
|
||||
this.workorderCodeSap = workorderCodeSap;
|
||||
}
|
||||
|
||||
public String getOrderNo() {
|
||||
return orderNo;
|
||||
}
|
||||
|
||||
public void setOrderNo(String orderNo) {
|
||||
this.orderNo = orderNo;
|
||||
}
|
||||
|
||||
public String getMaterialCode() {
|
||||
return materialCode;
|
||||
}
|
||||
|
||||
public void setMaterialCode(String materialCode) {
|
||||
this.materialCode = materialCode;
|
||||
}
|
||||
|
||||
public String getMaterialName() {
|
||||
return materialName;
|
||||
}
|
||||
|
||||
public void setMaterialName(String materialName) {
|
||||
this.materialName = materialName;
|
||||
}
|
||||
|
||||
public String getQuality() {
|
||||
return quality;
|
||||
}
|
||||
|
||||
public void setQuality(String quality) {
|
||||
this.quality = quality;
|
||||
}
|
||||
|
||||
public String getUnit() {
|
||||
return unit;
|
||||
}
|
||||
|
||||
public void setUnit(String unit) {
|
||||
this.unit = unit;
|
||||
}
|
||||
|
||||
public String getBatchCode() {
|
||||
return batchCode;
|
||||
}
|
||||
|
||||
public void setBatchCode(String batchCode) {
|
||||
this.batchCode = batchCode;
|
||||
}
|
||||
|
||||
public String getIncomeTimeStr() {
|
||||
return incomeTimeStr;
|
||||
}
|
||||
|
||||
public void setIncomeTimeStr(String incomeTimeStr) {
|
||||
this.incomeTimeStr = incomeTimeStr;
|
||||
}
|
||||
|
||||
public String getShiftId() {
|
||||
return shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(String shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
|
||||
public String getEquipmentName() {
|
||||
return equipmentName;
|
||||
}
|
||||
|
||||
public void setEquipmentName(String equipmentName) {
|
||||
this.equipmentName = equipmentName;
|
||||
}
|
||||
|
||||
public String getCheckManName() {
|
||||
return checkManName;
|
||||
}
|
||||
|
||||
public void setCheckManName(String checkManName) {
|
||||
this.checkManName = checkManName;
|
||||
}
|
||||
|
||||
public String getCheckTime() {
|
||||
return checkTime;
|
||||
}
|
||||
|
||||
public void setCheckTime(String checkTime) {
|
||||
this.checkTime = checkTime;
|
||||
}
|
||||
}
|
@ -0,0 +1,130 @@
|
||||
package com.op.quality.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
import com.op.system.api.domain.quality.ChartDTO;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @date 2023-11-08
|
||||
*/
|
||||
public class IncomeTableExport extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String supplierId;
|
||||
|
||||
@Excel(name = "单位编码")
|
||||
private String supplierCode;
|
||||
|
||||
@Excel(name = "单位名称")
|
||||
private String supplierName;
|
||||
@Excel(name = "总批数")
|
||||
private int batchs;
|
||||
@Excel(name = "合格批次")
|
||||
private int okBatchs;
|
||||
@Excel(name = "不合格批次")
|
||||
private int noOkBatchs;
|
||||
@Excel(name = "批次不良率")
|
||||
private String noOkBatchRate;
|
||||
@Excel(name = "总数量")
|
||||
private int nums;
|
||||
@Excel(name = "合格数")
|
||||
private int okNums;
|
||||
@Excel(name = "不合格数量")
|
||||
private int noOkNums;
|
||||
@Excel(name = "数量比例")
|
||||
private String noOkNumRate;
|
||||
|
||||
public String getSupplierId() {
|
||||
return supplierId;
|
||||
}
|
||||
|
||||
public void setSupplierId(String supplierId) {
|
||||
this.supplierId = supplierId;
|
||||
}
|
||||
|
||||
public String getSupplierCode() {
|
||||
return supplierCode;
|
||||
}
|
||||
|
||||
public void setSupplierCode(String supplierCode) {
|
||||
this.supplierCode = supplierCode;
|
||||
}
|
||||
|
||||
public String getSupplierName() {
|
||||
return supplierName;
|
||||
}
|
||||
|
||||
public void setSupplierName(String supplierName) {
|
||||
this.supplierName = supplierName;
|
||||
}
|
||||
|
||||
public int getBatchs() {
|
||||
return batchs;
|
||||
}
|
||||
|
||||
public void setBatchs(int batchs) {
|
||||
this.batchs = batchs;
|
||||
}
|
||||
|
||||
public int getOkBatchs() {
|
||||
return okBatchs;
|
||||
}
|
||||
|
||||
public void setOkBatchs(int okBatchs) {
|
||||
this.okBatchs = okBatchs;
|
||||
}
|
||||
|
||||
public int getNoOkBatchs() {
|
||||
return noOkBatchs;
|
||||
}
|
||||
|
||||
public void setNoOkBatchs(int noOkBatchs) {
|
||||
this.noOkBatchs = noOkBatchs;
|
||||
}
|
||||
|
||||
public String getNoOkBatchRate() {
|
||||
return noOkBatchRate;
|
||||
}
|
||||
|
||||
public void setNoOkBatchRate(String noOkBatchRate) {
|
||||
this.noOkBatchRate = noOkBatchRate;
|
||||
}
|
||||
|
||||
public int getNums() {
|
||||
return nums;
|
||||
}
|
||||
|
||||
public void setNums(int nums) {
|
||||
this.nums = nums;
|
||||
}
|
||||
|
||||
public int getOkNums() {
|
||||
return okNums;
|
||||
}
|
||||
|
||||
public void setOkNums(int okNums) {
|
||||
this.okNums = okNums;
|
||||
}
|
||||
|
||||
public int getNoOkNums() {
|
||||
return noOkNums;
|
||||
}
|
||||
|
||||
public void setNoOkNums(int noOkNums) {
|
||||
this.noOkNums = noOkNums;
|
||||
}
|
||||
|
||||
public String getNoOkNumRate() {
|
||||
return noOkNumRate;
|
||||
}
|
||||
|
||||
public void setNoOkNumRate(String noOkNumRate) {
|
||||
this.noOkNumRate = noOkNumRate;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue