|
@@ -18,6 +18,7 @@ public class MaterialProvided extends DataEntity<MaterialProvided> {
|
|
|
|
|
|
private Integer serialNumber;//序号
|
|
|
private String planToBatch;//计划批次
|
|
|
+ private String planToBatchName;//计划批次名称
|
|
|
private String caseInformation;//分标信息
|
|
|
private String materialExtension;//物料加扩展
|
|
|
private String materialCode;//物料编码
|
|
@@ -104,12 +105,20 @@ public class MaterialProvided extends DataEntity<MaterialProvided> {
|
|
|
public Double getReferencePrice() {
|
|
|
return referencePrice;
|
|
|
}
|
|
|
+ @ExcelField(title="计划批次名称", align=2, sort=10)
|
|
|
+ public String getPlanToBatchName() {
|
|
|
+ return planToBatchName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPlanToBatchName(String planToBatchName) {
|
|
|
+ this.planToBatchName = planToBatchName;
|
|
|
+ }
|
|
|
|
|
|
public void setReferencePrice(Double referencePrice) {
|
|
|
this.referencePrice = referencePrice;
|
|
|
}
|
|
|
|
|
|
- @ExcelField(title="版本名称", align=2, sort=10)
|
|
|
+ @ExcelField(title="版本名称", align=2, sort=11)
|
|
|
public String getVersionName() {
|
|
|
return versionName;
|
|
|
}
|