|
@@ -3,6 +3,7 @@
|
|
*/
|
|
*/
|
|
package com.jeeplus.modules.sg.material.entity;
|
|
package com.jeeplus.modules.sg.material.entity;
|
|
|
|
|
|
|
|
+import com.jeeplus.common.utils.excel.annotation.ExcelField;
|
|
import com.jeeplus.core.persistence.DataEntity;
|
|
import com.jeeplus.core.persistence.DataEntity;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -11,6 +12,18 @@ import com.jeeplus.core.persistence.DataEntity;
|
|
* @version 2019-09-04
|
|
* @version 2019-09-04
|
|
*/
|
|
*/
|
|
public class Material extends DataEntity<Material> {
|
|
public class Material extends DataEntity<Material> {
|
|
|
|
+ private String id;
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public String getId() {
|
|
|
|
+ return id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void setId(String id) {
|
|
|
|
+ this.id = id;
|
|
|
|
+ }
|
|
|
|
+
|
|
//项目编号
|
|
//项目编号
|
|
private String projectId;
|
|
private String projectId;
|
|
//物料编号
|
|
//物料编号
|
|
@@ -44,6 +57,7 @@ public class Material extends DataEntity<Material> {
|
|
//备注说明
|
|
//备注说明
|
|
private String info;
|
|
private String info;
|
|
|
|
|
|
|
|
+ @ExcelField(title="是否完成领退料", align=2, sort=13)
|
|
public String getIsBack() {
|
|
public String getIsBack() {
|
|
return isBack;
|
|
return isBack;
|
|
}
|
|
}
|
|
@@ -60,6 +74,7 @@ public class Material extends DataEntity<Material> {
|
|
this.projectId = projectId;
|
|
this.projectId = projectId;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ExcelField(title="物料编号", align=2, sort=1)
|
|
public String getInforId() {
|
|
public String getInforId() {
|
|
return inforId;
|
|
return inforId;
|
|
}
|
|
}
|
|
@@ -68,6 +83,7 @@ public class Material extends DataEntity<Material> {
|
|
this.inforId = inforId;
|
|
this.inforId = inforId;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ExcelField(title="物料描述", align=2, sort=2)
|
|
public String getMaterialName() {
|
|
public String getMaterialName() {
|
|
return materialName;
|
|
return materialName;
|
|
}
|
|
}
|
|
@@ -76,6 +92,7 @@ public class Material extends DataEntity<Material> {
|
|
this.materialName = materialName;
|
|
this.materialName = materialName;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ExcelField(title="出库金额", align=2, sort=3)
|
|
public Double getOutboundAmount() {
|
|
public Double getOutboundAmount() {
|
|
return outboundAmount;
|
|
return outboundAmount;
|
|
}
|
|
}
|
|
@@ -84,6 +101,7 @@ public class Material extends DataEntity<Material> {
|
|
this.outboundAmount = outboundAmount;
|
|
this.outboundAmount = outboundAmount;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ExcelField(title="审定金额", align=2, sort=4)
|
|
public Double getAuthorizedAmount() {
|
|
public Double getAuthorizedAmount() {
|
|
return authorizedAmount;
|
|
return authorizedAmount;
|
|
}
|
|
}
|
|
@@ -92,6 +110,7 @@ public class Material extends DataEntity<Material> {
|
|
this.authorizedAmount = authorizedAmount;
|
|
this.authorizedAmount = authorizedAmount;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ExcelField(title="差额", align=2, sort=5)
|
|
public Double getDifference() {
|
|
public Double getDifference() {
|
|
return difference;
|
|
return difference;
|
|
}
|
|
}
|
|
@@ -100,6 +119,7 @@ public class Material extends DataEntity<Material> {
|
|
this.difference = difference;
|
|
this.difference = difference;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ExcelField(title="出库数量", align=2, sort=6)
|
|
public Double getOutboundNumber() {
|
|
public Double getOutboundNumber() {
|
|
return outboundNumber;
|
|
return outboundNumber;
|
|
}
|
|
}
|
|
@@ -108,6 +128,7 @@ public class Material extends DataEntity<Material> {
|
|
this.outboundNumber = outboundNumber;
|
|
this.outboundNumber = outboundNumber;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ExcelField(title="审定数量", align=2, sort=7)
|
|
public Double getAuthorizedNumber() {
|
|
public Double getAuthorizedNumber() {
|
|
return authorizedNumber;
|
|
return authorizedNumber;
|
|
}
|
|
}
|
|
@@ -116,6 +137,7 @@ public class Material extends DataEntity<Material> {
|
|
this.authorizedNumber = authorizedNumber;
|
|
this.authorizedNumber = authorizedNumber;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ExcelField(title="平均价单价", align=2, sort=8)
|
|
public Double getPrice() {
|
|
public Double getPrice() {
|
|
return price;
|
|
return price;
|
|
}
|
|
}
|
|
@@ -124,6 +146,7 @@ public class Material extends DataEntity<Material> {
|
|
this.price = price;
|
|
this.price = price;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ExcelField(title="单位", align=2, sort=9)
|
|
public String getUnit() {
|
|
public String getUnit() {
|
|
return unit;
|
|
return unit;
|
|
}
|
|
}
|
|
@@ -132,6 +155,7 @@ public class Material extends DataEntity<Material> {
|
|
this.unit = unit;
|
|
this.unit = unit;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ExcelField(title="物料小类", align=2, sort=10)
|
|
public String getMaterialSmall() {
|
|
public String getMaterialSmall() {
|
|
return materialSmall;
|
|
return materialSmall;
|
|
}
|
|
}
|
|
@@ -140,6 +164,7 @@ public class Material extends DataEntity<Material> {
|
|
this.materialSmall = materialSmall;
|
|
this.materialSmall = materialSmall;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ExcelField(title="物料中类", align=2, sort=11)
|
|
public String getMaterialMid() {
|
|
public String getMaterialMid() {
|
|
return materialMid;
|
|
return materialMid;
|
|
}
|
|
}
|
|
@@ -148,6 +173,7 @@ public class Material extends DataEntity<Material> {
|
|
this.materialMid = materialMid;
|
|
this.materialMid = materialMid;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ExcelField(title="物料大类", align=2, sort=12)
|
|
public String getMaterialBig() {
|
|
public String getMaterialBig() {
|
|
return materialBig;
|
|
return materialBig;
|
|
}
|
|
}
|
|
@@ -156,6 +182,7 @@ public class Material extends DataEntity<Material> {
|
|
this.materialBig = materialBig;
|
|
this.materialBig = materialBig;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ExcelField(title="原因类型", align=2, sort=14)
|
|
public String getStatus() {
|
|
public String getStatus() {
|
|
return status;
|
|
return status;
|
|
}
|
|
}
|
|
@@ -164,6 +191,7 @@ public class Material extends DataEntity<Material> {
|
|
this.status = status;
|
|
this.status = status;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ExcelField(title="备注说明", align=2, sort=15)
|
|
public String getInfo() {
|
|
public String getInfo() {
|
|
return info;
|
|
return info;
|
|
}
|
|
}
|