|
@@ -35,25 +35,33 @@ public class HxpChemicalByExcel {
|
|
|
@ApiModelProperty(value = "标签类型内容")
|
|
@ApiModelProperty(value = "标签类型内容")
|
|
|
private String labelContent;
|
|
private String labelContent;
|
|
|
|
|
|
|
|
- @Excel(name = "属性",sort = 5)
|
|
|
|
|
|
|
+ @Excel(name = "计量单位",sort = 4, isRequired=true)
|
|
|
|
|
+ @ApiModelProperty(value = "计量单位")
|
|
|
|
|
+ private String chemicalUnit;
|
|
|
|
|
+
|
|
|
|
|
+ @Excel(name = "计量方式",sort = 5, isRequired=true)
|
|
|
|
|
+ @ApiModelProperty(value = "计量方式")
|
|
|
|
|
+ private String measuringMethod;
|
|
|
|
|
+
|
|
|
|
|
+ @Excel(name = "属性",sort = 6)
|
|
|
@ApiModelProperty(value = "分类属性")
|
|
@ApiModelProperty(value = "分类属性")
|
|
|
private String classifyAttribute;
|
|
private String classifyAttribute;
|
|
|
|
|
|
|
|
- @Excel(name = "cas号",sort = 6)
|
|
|
|
|
|
|
+ @Excel(name = "cas号",sort = 7)
|
|
|
@Length(message = "cas号长度不能超过50")
|
|
@Length(message = "cas号长度不能超过50")
|
|
|
@ApiModelProperty(value = "cas号")
|
|
@ApiModelProperty(value = "cas号")
|
|
|
private String casNum;
|
|
private String casNum;
|
|
|
|
|
|
|
|
- @Excel(name = "别名",sort = 7)
|
|
|
|
|
|
|
+ @Excel(name = "别名",sort = 8)
|
|
|
@ApiModelProperty(value = "别名")
|
|
@ApiModelProperty(value = "别名")
|
|
|
private String anotherName;
|
|
private String anotherName;
|
|
|
|
|
|
|
|
- @Excel(name = "纯度",sort = 8)
|
|
|
|
|
|
|
+ @Excel(name = "纯度",sort = 9)
|
|
|
@ApiModelProperty(value = "纯度")
|
|
@ApiModelProperty(value = "纯度")
|
|
|
private String purity;
|
|
private String purity;
|
|
|
|
|
|
|
|
|
|
|
|
|
- @Excel(name = "生产厂家",sort = 9)
|
|
|
|
|
|
|
+ @Excel(name = "生产厂家",sort = 10)
|
|
|
@ApiModelProperty(value = "生产厂家")
|
|
@ApiModelProperty(value = "生产厂家")
|
|
|
private String factory;
|
|
private String factory;
|
|
|
|
|
|
|
@@ -160,4 +168,12 @@ public class HxpChemicalByExcel {
|
|
|
public void setUpDate(Boolean upDate) {
|
|
public void setUpDate(Boolean upDate) {
|
|
|
this.upDate = upDate;
|
|
this.upDate = upDate;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ public String getChemicalUnit() { return chemicalUnit; }
|
|
|
|
|
+
|
|
|
|
|
+ public void setChemicalUnit(String chemicalUnit) { this.chemicalUnit = chemicalUnit; }
|
|
|
|
|
+
|
|
|
|
|
+ public String getMeasuringMethod() { return measuringMethod; }
|
|
|
|
|
+
|
|
|
|
|
+ public void setMeasuringMethod(String measuringMethod) { this.measuringMethod = measuringMethod; }
|
|
|
}
|
|
}
|