|
|
@@ -68,11 +68,31 @@ public class BaseSafetyTool extends BaseEntity {
|
|
|
@Length(max = 10, message = "【电压等级】长度必须介于 {min} 和 {max} 之间")
|
|
|
private String elecLevel;
|
|
|
|
|
|
- @ApiModelProperty(value = "单位")
|
|
|
+ @ApiModelProperty(value = "计量单位")
|
|
|
@Excel(name = "单位")
|
|
|
@Length(max = 10, message = "【单位】长度必须介于 {min} 和 {max} 之间")
|
|
|
private String unit;
|
|
|
|
|
|
+ @ApiModelProperty(value = "数量")
|
|
|
+ @Excel(name = "数量")
|
|
|
+ private Integer amount;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "导出Excel序号")
|
|
|
+ @Excel(name = "序号")
|
|
|
+ private Integer seq;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "实验电压")
|
|
|
+ @Excel(name = "实验电压")
|
|
|
+ private String testVoltage;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "实验时长(分钟)")
|
|
|
+ @Excel(name = "实验时长(分钟)")
|
|
|
+ private Integer testDuration;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "电压等级")
|
|
|
+ @Excel(name = "电压等级")
|
|
|
+ private String voltageLevel;
|
|
|
+
|
|
|
@ApiModelProperty(value = "试验周期")
|
|
|
private Integer testCycle;
|
|
|
|