6 changed files with 308 additions and 0 deletions
-
25src/main/java/com/xujie/sys/modules/report/qcsubpart/controller/QcSubPartQueryController.java
-
2src/main/java/com/xujie/sys/modules/report/qcsubpart/dao/QcSubPartReportDao.java
-
54src/main/java/com/xujie/sys/modules/report/qcsubpart/dao/impl/QcSubPartReportDaoImpl.java
-
166src/main/java/com/xujie/sys/modules/report/qcsubpart/data/QcSubPartExportRowData.java
-
4src/main/java/com/xujie/sys/modules/report/qcsubpart/service/QcSubPartReportService.java
-
57src/main/java/com/xujie/sys/modules/report/qcsubpart/service/impl/QcSubPartReportServiceImpl.java
@ -0,0 +1,166 @@ |
|||
package com.xujie.sys.modules.report.qcsubpart.data; |
|||
|
|||
import com.alibaba.excel.annotation.ExcelProperty; |
|||
|
|||
public class QcSubPartExportRowData { |
|||
@ExcelProperty(index = 0, value = "记录号") |
|||
private String recordNo; |
|||
@ExcelProperty(index = 1, value = "派工单号") |
|||
private String seqNo; |
|||
@ExcelProperty(index = 2, value = "生产日期(主)") |
|||
private String scheduledDateMain; |
|||
@ExcelProperty(index = 3, value = "设备编码") |
|||
private String resourceId; |
|||
@ExcelProperty(index = 4, value = "设备名称") |
|||
private String resourceDesc; |
|||
@ExcelProperty(index = 5, value = "物料编码") |
|||
private String partNo; |
|||
@ExcelProperty(index = 6, value = "产品名称") |
|||
private String partDesc; |
|||
@ExcelProperty(index = 7, value = "SKU") |
|||
private String sku; |
|||
@ExcelProperty(index = 8, value = "合格数量") |
|||
private String qtyApprove; |
|||
@ExcelProperty(index = 9, value = "子件编码") |
|||
private String subPartNo; |
|||
@ExcelProperty(index = 10, value = "子件描述") |
|||
private String subPartDesc; |
|||
@ExcelProperty(index = 11, value = "供应商编码") |
|||
private String supplierId; |
|||
@ExcelProperty(index = 12, value = "供应商名称") |
|||
private String supplierName; |
|||
@ExcelProperty(index = 13, value = "型号") |
|||
private String modelNo; |
|||
@ExcelProperty(index = 14, value = "生产日期(子件)") |
|||
private String scheduledDateSub; |
|||
@ExcelProperty(index = 15, value = "备注") |
|||
private String remark; |
|||
|
|||
public String getRecordNo() { |
|||
return recordNo; |
|||
} |
|||
|
|||
public void setRecordNo(String recordNo) { |
|||
this.recordNo = recordNo; |
|||
} |
|||
|
|||
public String getSeqNo() { |
|||
return seqNo; |
|||
} |
|||
|
|||
public void setSeqNo(String seqNo) { |
|||
this.seqNo = seqNo; |
|||
} |
|||
|
|||
public String getScheduledDateMain() { |
|||
return scheduledDateMain; |
|||
} |
|||
|
|||
public void setScheduledDateMain(String scheduledDateMain) { |
|||
this.scheduledDateMain = scheduledDateMain; |
|||
} |
|||
|
|||
public String getResourceId() { |
|||
return resourceId; |
|||
} |
|||
|
|||
public void setResourceId(String resourceId) { |
|||
this.resourceId = resourceId; |
|||
} |
|||
|
|||
public String getResourceDesc() { |
|||
return resourceDesc; |
|||
} |
|||
|
|||
public void setResourceDesc(String resourceDesc) { |
|||
this.resourceDesc = resourceDesc; |
|||
} |
|||
|
|||
public String getPartNo() { |
|||
return partNo; |
|||
} |
|||
|
|||
public void setPartNo(String partNo) { |
|||
this.partNo = partNo; |
|||
} |
|||
|
|||
public String getPartDesc() { |
|||
return partDesc; |
|||
} |
|||
|
|||
public void setPartDesc(String partDesc) { |
|||
this.partDesc = partDesc; |
|||
} |
|||
|
|||
public String getSku() { |
|||
return sku; |
|||
} |
|||
|
|||
public void setSku(String sku) { |
|||
this.sku = sku; |
|||
} |
|||
|
|||
public String getQtyApprove() { |
|||
return qtyApprove; |
|||
} |
|||
|
|||
public void setQtyApprove(String qtyApprove) { |
|||
this.qtyApprove = qtyApprove; |
|||
} |
|||
|
|||
public String getSubPartNo() { |
|||
return subPartNo; |
|||
} |
|||
|
|||
public void setSubPartNo(String subPartNo) { |
|||
this.subPartNo = subPartNo; |
|||
} |
|||
|
|||
public String getSubPartDesc() { |
|||
return subPartDesc; |
|||
} |
|||
|
|||
public void setSubPartDesc(String subPartDesc) { |
|||
this.subPartDesc = subPartDesc; |
|||
} |
|||
|
|||
public String getSupplierId() { |
|||
return supplierId; |
|||
} |
|||
|
|||
public void setSupplierId(String supplierId) { |
|||
this.supplierId = supplierId; |
|||
} |
|||
|
|||
public String getSupplierName() { |
|||
return supplierName; |
|||
} |
|||
|
|||
public void setSupplierName(String supplierName) { |
|||
this.supplierName = supplierName; |
|||
} |
|||
|
|||
public String getModelNo() { |
|||
return modelNo; |
|||
} |
|||
|
|||
public void setModelNo(String modelNo) { |
|||
this.modelNo = modelNo; |
|||
} |
|||
|
|||
public String getScheduledDateSub() { |
|||
return scheduledDateSub; |
|||
} |
|||
|
|||
public void setScheduledDateSub(String scheduledDateSub) { |
|||
this.scheduledDateSub = scheduledDateSub; |
|||
} |
|||
|
|||
public String getRemark() { |
|||
return remark; |
|||
} |
|||
|
|||
public void setRemark(String remark) { |
|||
this.remark = remark; |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue