|
@@ -7,7 +7,7 @@ import com.jeeplus.common.utils.excel.annotation.ExcelField;
|
|
import com.jeeplus.core.persistence.DataEntity;
|
|
import com.jeeplus.core.persistence.DataEntity;
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 项目信息Entity
|
|
|
|
|
|
+ * 物料信息Entity
|
|
* @author qiuyue
|
|
* @author qiuyue
|
|
* @version 2019-09-04
|
|
* @version 2019-09-04
|
|
*/
|
|
*/
|
|
@@ -51,40 +51,23 @@ public class Material extends DataEntity<Material> {
|
|
private Double afterNumber;
|
|
private Double afterNumber;
|
|
//用于记录修改原因后的审定数量,便于下次比对
|
|
//用于记录修改原因后的审定数量,便于下次比对
|
|
private Double afterAuthor;
|
|
private Double afterAuthor;
|
|
|
|
+ //项目名称
|
|
|
|
+ private String projectName;
|
|
|
|
+ //项目类型
|
|
|
|
+ private String projectType;
|
|
|
|
+ //工作状态
|
|
|
|
+ private String appendStatus;
|
|
|
|
|
|
- public Double getAfterAuthor() {
|
|
|
|
- return afterAuthor;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setAfterAuthor(Double afterAuthor) {
|
|
|
|
- this.afterAuthor = afterAuthor;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Double getAfterNumber() {
|
|
|
|
- return afterNumber;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setAfterNumber(Double afterNumber) {
|
|
|
|
- this.afterNumber = afterNumber;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public int getIsBackNo() {
|
|
|
|
- return isBackNo;
|
|
|
|
|
|
+ @ExcelField(title="项目名称", align=2, sort=1)
|
|
|
|
+ public String getProjectName() {
|
|
|
|
+ return projectName;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setIsBackNo(int isBackNo) {
|
|
|
|
- this.isBackNo = isBackNo;
|
|
|
|
|
|
+ public void setProjectName(String projectName) {
|
|
|
|
+ this.projectName = projectName;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="是否完成领退料", align=2, sort=14)
|
|
|
|
- public String getIsBack() {
|
|
|
|
- return isBack;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setIsBack(String isBack) {
|
|
|
|
- this.isBack = isBack;
|
|
|
|
- }
|
|
|
|
- @ExcelField(title="项目定义号", align=2, sort=1)
|
|
|
|
|
|
+ @ExcelField(title="项目定义号", align=2, sort=2)
|
|
public String getProjectId() {
|
|
public String getProjectId() {
|
|
return projectId;
|
|
return projectId;
|
|
}
|
|
}
|
|
@@ -93,7 +76,7 @@ public class Material extends DataEntity<Material> {
|
|
this.projectId = projectId;
|
|
this.projectId = projectId;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="物料编号", align=2, sort=2)
|
|
|
|
|
|
+ @ExcelField(title="物料编号", align=2, sort=3)
|
|
public String getInforId() {
|
|
public String getInforId() {
|
|
return inforId;
|
|
return inforId;
|
|
}
|
|
}
|
|
@@ -102,7 +85,25 @@ public class Material extends DataEntity<Material> {
|
|
this.inforId = inforId;
|
|
this.inforId = inforId;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="物料描述", align=2, sort=3)
|
|
|
|
|
|
+ @ExcelField(title="项目类型", align=2, sort=4)
|
|
|
|
+ public String getProjectType() {
|
|
|
|
+ return projectType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setProjectType(String projectType) {
|
|
|
|
+ this.projectType = projectType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @ExcelField(title="工作状态", align=2, sort=5)
|
|
|
|
+ public String getAppendStatus() {
|
|
|
|
+ return appendStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setAppendStatus(String appendStatus) {
|
|
|
|
+ this.appendStatus = appendStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @ExcelField(title="物料描述", align=2, sort=6)
|
|
public String getMaterialName() {
|
|
public String getMaterialName() {
|
|
return materialName;
|
|
return materialName;
|
|
}
|
|
}
|
|
@@ -111,7 +112,7 @@ public class Material extends DataEntity<Material> {
|
|
this.materialName = materialName;
|
|
this.materialName = materialName;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="出库金额", align=2, sort=4)
|
|
|
|
|
|
+ @ExcelField(title="出库金额", align=2, sort=7)
|
|
public Double getOutboundAmount() {
|
|
public Double getOutboundAmount() {
|
|
return outboundAmount;
|
|
return outboundAmount;
|
|
}
|
|
}
|
|
@@ -120,7 +121,7 @@ public class Material extends DataEntity<Material> {
|
|
this.outboundAmount = outboundAmount;
|
|
this.outboundAmount = outboundAmount;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="审定金额", align=2, sort=5)
|
|
|
|
|
|
+ @ExcelField(title="审定金额", align=2, sort=8)
|
|
public Double getAuthorizedAmount() {
|
|
public Double getAuthorizedAmount() {
|
|
return authorizedAmount;
|
|
return authorizedAmount;
|
|
}
|
|
}
|
|
@@ -129,7 +130,7 @@ public class Material extends DataEntity<Material> {
|
|
this.authorizedAmount = authorizedAmount;
|
|
this.authorizedAmount = authorizedAmount;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="差额", align=2, sort=6)
|
|
|
|
|
|
+ @ExcelField(title="差额", align=2, sort=9)
|
|
public Double getDifference() {
|
|
public Double getDifference() {
|
|
return difference;
|
|
return difference;
|
|
}
|
|
}
|
|
@@ -138,7 +139,7 @@ public class Material extends DataEntity<Material> {
|
|
this.difference = difference;
|
|
this.difference = difference;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="出库数量", align=2, sort=7)
|
|
|
|
|
|
+ @ExcelField(title="出库数量", align=2, sort=10)
|
|
public Double getOutboundNumber() {
|
|
public Double getOutboundNumber() {
|
|
return outboundNumber;
|
|
return outboundNumber;
|
|
}
|
|
}
|
|
@@ -147,7 +148,7 @@ public class Material extends DataEntity<Material> {
|
|
this.outboundNumber = outboundNumber;
|
|
this.outboundNumber = outboundNumber;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="审定数量", align=2, sort=8)
|
|
|
|
|
|
+ @ExcelField(title="审定数量", align=2, sort=11)
|
|
public Double getAuthorizedNumber() {
|
|
public Double getAuthorizedNumber() {
|
|
return authorizedNumber;
|
|
return authorizedNumber;
|
|
}
|
|
}
|
|
@@ -156,7 +157,7 @@ public class Material extends DataEntity<Material> {
|
|
this.authorizedNumber = authorizedNumber;
|
|
this.authorizedNumber = authorizedNumber;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="平均价单价", align=2, sort=9)
|
|
|
|
|
|
+ @ExcelField(title="平均价单价", align=2, sort=12)
|
|
public Double getPrice() {
|
|
public Double getPrice() {
|
|
return price;
|
|
return price;
|
|
}
|
|
}
|
|
@@ -165,7 +166,7 @@ public class Material extends DataEntity<Material> {
|
|
this.price = price;
|
|
this.price = price;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="单位", align=2, sort=10)
|
|
|
|
|
|
+ @ExcelField(title="单位", align=2, sort=13)
|
|
public String getUnit() {
|
|
public String getUnit() {
|
|
return unit;
|
|
return unit;
|
|
}
|
|
}
|
|
@@ -174,7 +175,7 @@ public class Material extends DataEntity<Material> {
|
|
this.unit = unit;
|
|
this.unit = unit;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="物料小类", align=2, sort=11)
|
|
|
|
|
|
+ @ExcelField(title="物料小类", align=2, sort=14)
|
|
public String getMaterialSmall() {
|
|
public String getMaterialSmall() {
|
|
return materialSmall;
|
|
return materialSmall;
|
|
}
|
|
}
|
|
@@ -183,7 +184,7 @@ public class Material extends DataEntity<Material> {
|
|
this.materialSmall = materialSmall;
|
|
this.materialSmall = materialSmall;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="物料中类", align=2, sort=12)
|
|
|
|
|
|
+ @ExcelField(title="物料中类", align=2, sort=15)
|
|
public String getMaterialMid() {
|
|
public String getMaterialMid() {
|
|
return materialMid;
|
|
return materialMid;
|
|
}
|
|
}
|
|
@@ -192,7 +193,7 @@ public class Material extends DataEntity<Material> {
|
|
this.materialMid = materialMid;
|
|
this.materialMid = materialMid;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="物料大类", align=2, sort=13)
|
|
|
|
|
|
+ @ExcelField(title="物料大类", align=2, sort=16)
|
|
public String getMaterialBig() {
|
|
public String getMaterialBig() {
|
|
return materialBig;
|
|
return materialBig;
|
|
}
|
|
}
|
|
@@ -201,7 +202,16 @@ public class Material extends DataEntity<Material> {
|
|
this.materialBig = materialBig;
|
|
this.materialBig = materialBig;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="原因类型", align=2, sort=15)
|
|
|
|
|
|
+ @ExcelField(title="是否完成领退料", align=2, sort=17)
|
|
|
|
+ public String getIsBack() {
|
|
|
|
+ return isBack;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setIsBack(String isBack) {
|
|
|
|
+ this.isBack = isBack;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @ExcelField(title="原因类型", align=2, sort=18)
|
|
public String getStatus() {
|
|
public String getStatus() {
|
|
return status;
|
|
return status;
|
|
}
|
|
}
|
|
@@ -210,7 +220,7 @@ public class Material extends DataEntity<Material> {
|
|
this.status = status;
|
|
this.status = status;
|
|
}
|
|
}
|
|
|
|
|
|
- @ExcelField(title="备注说明", align=2, sort=16)
|
|
|
|
|
|
+ @ExcelField(title="备注说明", align=2, sort=19)
|
|
public String getInfo() {
|
|
public String getInfo() {
|
|
return info;
|
|
return info;
|
|
}
|
|
}
|
|
@@ -218,4 +228,32 @@ public class Material extends DataEntity<Material> {
|
|
public void setInfo(String info) {
|
|
public void setInfo(String info) {
|
|
this.info = info;
|
|
this.info = info;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public Double getAfterAuthor() {
|
|
|
|
+ return afterAuthor;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setAfterAuthor(Double afterAuthor) {
|
|
|
|
+ this.afterAuthor = afterAuthor;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Double getAfterNumber() {
|
|
|
|
+ return afterNumber;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setAfterNumber(Double afterNumber) {
|
|
|
|
+ this.afterNumber = afterNumber;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public void setIsBackNo(int isBackNo) {
|
|
|
|
+ this.isBackNo = isBackNo;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public int getIsBackNo() {
|
|
|
|
+ return isBackNo;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
}
|
|
}
|