|
@@ -23,7 +23,9 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
private String brand; //品牌
|
|
|
private String specifications; //规格型号
|
|
|
private String unit; //单位
|
|
|
+ private Double projectPriceExcludingTax; //不含税工程价(元)
|
|
|
private Double projectPriceIncludingTax; //含税工程价(元)
|
|
|
+ private Double marketPriceExcludingTax; //不含税市场价(元)
|
|
|
private Double marketPriceIncludingTax; //含税市场价(元)
|
|
|
private Double taxRate; //税率
|
|
|
private String explain; //产品说明
|
|
@@ -47,8 +49,19 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
|
|
|
private String distinctStr ; //用于去重用的临时参数
|
|
|
private String errorMessage ; //错误原因
|
|
|
+ private String monomerProjectDescription ; //单体工程描述
|
|
|
+ private String priceSource ; //价格来源。 1:甲供、2:乙供、3:概算价
|
|
|
+ private Double count; //数量
|
|
|
+
|
|
|
+ private Integer quotedPriceYear ; //报价时间-年份
|
|
|
+ private Integer quotedPriceMonth ; //报价时间-月份
|
|
|
|
|
|
|
|
|
+ private String beginProjectPriceExcludingTax; //开始工程价(元,不含税)
|
|
|
+ private String endProjectPriceExcludingTax; //结束工程价(元,不含税)
|
|
|
+ private String beginMarketPriceExcludingTax; //开始市场价(元,不含税)
|
|
|
+ private String endMarketPriceExcludingTax; //结束市场价(元,不含税)
|
|
|
+
|
|
|
private String beginProjectPriceIncludingTax; //开始含税工程价(元)
|
|
|
private String endProjectPriceIncludingTax; //结束含税工程价(元)
|
|
|
private String beginMarketPriceIncludingTax; //开始含税市场价(元)
|
|
@@ -161,7 +174,7 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
this.projectMaterialStorageList = projectMaterialStorageList;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="品牌", align=2, sort=2)
|
|
|
+ @ExcelField(title="品牌", align=2, sort=10)
|
|
|
public String getBrand() {
|
|
|
return brand;
|
|
|
}
|
|
@@ -170,7 +183,7 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
this.brand = brand;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="规格型号", align=2, sort=3)
|
|
|
+ @ExcelField(title="规格型号", align=2, sort=2)
|
|
|
public String getSpecifications() {
|
|
|
return specifications;
|
|
|
}
|
|
@@ -179,7 +192,6 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
this.specifications = specifications;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="含税工程价(元)", align=2, sort=4)
|
|
|
public Double getProjectPriceIncludingTax() {
|
|
|
return projectPriceIncludingTax;
|
|
|
}
|
|
@@ -188,7 +200,24 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
this.projectPriceIncludingTax = projectPriceIncludingTax;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="含税市场价(元)", align=2, sort=5)
|
|
|
+ @ExcelField(title="工程价(元,不含税)", align=2, sort=5)
|
|
|
+ public Double getProjectPriceExcludingTax() {
|
|
|
+ return projectPriceExcludingTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProjectPriceExcludingTax(Double projectPriceExcludingTax) {
|
|
|
+ this.projectPriceExcludingTax = projectPriceExcludingTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ @ExcelField(title="市场价(元,不含税)", align=2, sort=6)
|
|
|
+ public Double getMarketPriceExcludingTax() {
|
|
|
+ return marketPriceExcludingTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMarketPriceExcludingTax(Double marketPriceExcludingTax) {
|
|
|
+ this.marketPriceExcludingTax = marketPriceExcludingTax;
|
|
|
+ }
|
|
|
+
|
|
|
public Double getMarketPriceIncludingTax() {
|
|
|
return marketPriceIncludingTax;
|
|
|
}
|
|
@@ -197,7 +226,7 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
this.marketPriceIncludingTax = marketPriceIncludingTax;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="税率", align=2, sort=6)
|
|
|
+ @ExcelField(title="税率", align=2, sort=7)
|
|
|
public Double getTaxRate() {
|
|
|
return taxRate;
|
|
|
}
|
|
@@ -206,7 +235,7 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
this.taxRate = taxRate;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="材料单位", align=2, sort=7)
|
|
|
+ @ExcelField(title="单位", align=2, sort=3)
|
|
|
public String getUnit() {
|
|
|
return unit;
|
|
|
}
|
|
@@ -215,7 +244,7 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
this.unit = unit;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="产品说明", align=2, sort=8)
|
|
|
+ @ExcelField(title="产品说明", align=2, sort=11)
|
|
|
public String getExplain() {
|
|
|
return explain;
|
|
|
}
|
|
@@ -224,7 +253,7 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
this.explain = explain;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="供应商", align=2, sort=9)
|
|
|
+ @ExcelField(title="供应商", align=2, sort=12)
|
|
|
public String getSupplier() {
|
|
|
return supplier;
|
|
|
}
|
|
@@ -234,7 +263,7 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- @ExcelField(title="备注", align=2, sort=10)
|
|
|
+ @ExcelField(title="备注", align=2, sort=13)
|
|
|
public String getRemarks() {
|
|
|
return remarks;
|
|
|
}
|
|
@@ -245,12 +274,10 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
}
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
- @ExcelField(title="报价时间", align=2, sort=11)
|
|
|
+ @ExcelField(title="报价时间", align=2, sort=14)
|
|
|
public Date getQuotedPriceDate() {
|
|
|
return quotedPriceDate;
|
|
|
}
|
|
|
- private String monomerProjectDescription ; //单体工程描述
|
|
|
- private String priceSource ; //价格来源。 1:甲供、2:乙供、3:概算价
|
|
|
|
|
|
public void setQuotedPriceDate(Date quotedPriceDate) {
|
|
|
this.quotedPriceDate = quotedPriceDate;
|
|
@@ -336,7 +363,7 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
this.distinctStr = distinctStr;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="提醒", align=2, sort=14)
|
|
|
+ @ExcelField(title="提醒", align=2, sort=15, type = 1)
|
|
|
public String getErrorMessage() {
|
|
|
return errorMessage;
|
|
|
}
|
|
@@ -345,7 +372,7 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
this.errorMessage = errorMessage;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="单体项目描述", align=2, sort=12)
|
|
|
+ @ExcelField(title="单体项目描述", align=2, sort=9)
|
|
|
public String getMonomerProjectDescription() {
|
|
|
return monomerProjectDescription;
|
|
|
}
|
|
@@ -354,7 +381,7 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
this.monomerProjectDescription = monomerProjectDescription;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="价格来源", align=2, sort=13)
|
|
|
+ @ExcelField(title="价格来源", align=2, sort=8)
|
|
|
public String getPriceSource() {
|
|
|
return priceSource;
|
|
|
}
|
|
@@ -362,4 +389,61 @@ public class ProjectMaterialStorage extends DataEntity<ProjectMaterialStorage> {
|
|
|
public void setPriceSource(String priceSource) {
|
|
|
this.priceSource = priceSource;
|
|
|
}
|
|
|
+
|
|
|
+ @ExcelField(title="数量", align=2, sort=4, type = 2)
|
|
|
+ public Double getCount() {
|
|
|
+ return count;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCount(Double count) {
|
|
|
+ this.count = count;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getQuotedPriceYear() {
|
|
|
+ return quotedPriceYear;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setQuotedPriceYear(Integer quotedPriceYear) {
|
|
|
+ this.quotedPriceYear = quotedPriceYear;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getQuotedPriceMonth() {
|
|
|
+ return quotedPriceMonth;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setQuotedPriceMonth(Integer quotedPriceMonth) {
|
|
|
+ this.quotedPriceMonth = quotedPriceMonth;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBeginProjectPriceExcludingTax() {
|
|
|
+ return beginProjectPriceExcludingTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBeginProjectPriceExcludingTax(String beginProjectPriceExcludingTax) {
|
|
|
+ this.beginProjectPriceExcludingTax = beginProjectPriceExcludingTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEndProjectPriceExcludingTax() {
|
|
|
+ return endProjectPriceExcludingTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEndProjectPriceExcludingTax(String endProjectPriceExcludingTax) {
|
|
|
+ this.endProjectPriceExcludingTax = endProjectPriceExcludingTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBeginMarketPriceExcludingTax() {
|
|
|
+ return beginMarketPriceExcludingTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBeginMarketPriceExcludingTax(String beginMarketPriceExcludingTax) {
|
|
|
+ this.beginMarketPriceExcludingTax = beginMarketPriceExcludingTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEndMarketPriceExcludingTax() {
|
|
|
+ return endMarketPriceExcludingTax;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEndMarketPriceExcludingTax(String endMarketPriceExcludingTax) {
|
|
|
+ this.endMarketPriceExcludingTax = endMarketPriceExcludingTax;
|
|
|
+ }
|
|
|
}
|