|
@@ -0,0 +1,198 @@
|
|
|
+package com.steerinfo.dil.model;
|
|
|
+
|
|
|
+
|
|
|
+import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class ReceiveSendReport {
|
|
|
+
|
|
|
+ @ExcelProperty(value = "客户", index = 0)
|
|
|
+ private String companyName;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "片区", index = 1)
|
|
|
+ private String saleArea;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "物资名称", index = 2)
|
|
|
+ private String materialName;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "规格", index = 3)
|
|
|
+ private String materialSpe;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "型号", index = 4)
|
|
|
+ private String materialModel;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "米数", index = 5)
|
|
|
+ private BigDecimal meter;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "单重", index = 6)
|
|
|
+ private BigDecimal singleWeight;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "总入库件数", index = 7)
|
|
|
+ private BigDecimal inboundMaterialNumber;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "总入库重量", index = 8)
|
|
|
+ private BigDecimal inboundMaterialWeight;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "总出库件数", index = 9)
|
|
|
+ private BigDecimal outboundMaterialNumber;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "总出库重量", index = 10)
|
|
|
+ private BigDecimal outboundMaterialWeight;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "当前入库数量", index = 11)
|
|
|
+ private BigDecimal currentInboundMaterialNumber;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "当前入库重量", index = 12)
|
|
|
+ private BigDecimal currentInboundTheoryWeight;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "当前出库数量", index = 13)
|
|
|
+ private BigDecimal currentOutboundMaterialNumber;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "当前出库重量", index = 14)
|
|
|
+ private BigDecimal currentOutboundTheoryWeight;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "库存件数", index = 15)
|
|
|
+ private BigDecimal materialNumber;
|
|
|
+
|
|
|
+ @ExcelProperty(value = "库存重量", index = 16)
|
|
|
+ private BigDecimal materialWeight;
|
|
|
+
|
|
|
+ public String getCompanyName() {
|
|
|
+ return companyName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCompanyName(String companyName) {
|
|
|
+ this.companyName = companyName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSaleArea() {
|
|
|
+ return saleArea;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSaleArea(String saleArea) {
|
|
|
+ this.saleArea = saleArea;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMaterialName() {
|
|
|
+ return materialName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaterialName(String materialName) {
|
|
|
+ this.materialName = materialName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMaterialSpe() {
|
|
|
+ return materialSpe;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaterialSpe(String materialSpe) {
|
|
|
+ this.materialSpe = materialSpe;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMaterialModel() {
|
|
|
+ return materialModel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaterialModel(String materialModel) {
|
|
|
+ this.materialModel = materialModel;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getMeter() {
|
|
|
+ return meter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMeter(BigDecimal meter) {
|
|
|
+ this.meter = meter;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getSingleWeight() {
|
|
|
+ return singleWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSingleWeight(BigDecimal singleWeight) {
|
|
|
+ this.singleWeight = singleWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getInboundMaterialNumber() {
|
|
|
+ return inboundMaterialNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInboundMaterialNumber(BigDecimal inboundMaterialNumber) {
|
|
|
+ this.inboundMaterialNumber = inboundMaterialNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getInboundMaterialWeight() {
|
|
|
+ return inboundMaterialWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setInboundMaterialWeight(BigDecimal inboundMaterialWeight) {
|
|
|
+ this.inboundMaterialWeight = inboundMaterialWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getOutboundMaterialNumber() {
|
|
|
+ return outboundMaterialNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOutboundMaterialNumber(BigDecimal outboundMaterialNumber) {
|
|
|
+ this.outboundMaterialNumber = outboundMaterialNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getOutboundMaterialWeight() {
|
|
|
+ return outboundMaterialWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOutboundMaterialWeight(BigDecimal outboundMaterialWeight) {
|
|
|
+ this.outboundMaterialWeight = outboundMaterialWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCurrentInboundMaterialNumber() {
|
|
|
+ return currentInboundMaterialNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCurrentInboundMaterialNumber(BigDecimal currentInboundMaterialNumber) {
|
|
|
+ this.currentInboundMaterialNumber = currentInboundMaterialNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCurrentInboundTheoryWeight() {
|
|
|
+ return currentInboundTheoryWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCurrentInboundTheoryWeight(BigDecimal currentInboundTheoryWeight) {
|
|
|
+ this.currentInboundTheoryWeight = currentInboundTheoryWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCurrentOutboundMaterialNumber() {
|
|
|
+ return currentOutboundMaterialNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCurrentOutboundMaterialNumber(BigDecimal currentOutboundMaterialNumber) {
|
|
|
+ this.currentOutboundMaterialNumber = currentOutboundMaterialNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCurrentOutboundTheoryWeight() {
|
|
|
+ return currentOutboundTheoryWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCurrentOutboundTheoryWeight(BigDecimal currentOutboundTheoryWeight) {
|
|
|
+ this.currentOutboundTheoryWeight = currentOutboundTheoryWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getMaterialNumber() {
|
|
|
+ return materialNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaterialNumber(BigDecimal materialNumber) {
|
|
|
+ this.materialNumber = materialNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getMaterialWeight() {
|
|
|
+ return materialWeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMaterialWeight(BigDecimal materialWeight) {
|
|
|
+ this.materialWeight = materialWeight;
|
|
|
+ }
|
|
|
+}
|