update
This commit is contained in:
@@ -20,7 +20,7 @@ import lombok.experimental.Accessors;
|
||||
/**
|
||||
* @Description: 测试过程
|
||||
* @Author: jeecg-boot
|
||||
* @Date: 2024-10-15
|
||||
* @Date: 2024-10-22
|
||||
* @Version: V1.0
|
||||
*/
|
||||
@Data
|
||||
@@ -86,16 +86,48 @@ public class ExperimentTestProcess implements Serializable {
|
||||
@Excel(name = "试验ID", width = 15)
|
||||
@Schema(description = "试验ID")
|
||||
private String experimentId;
|
||||
/**辐照开始时间*/
|
||||
@Excel(name = "辐照开始时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
||||
/**测试开始时间*/
|
||||
@Excel(name = "测试开始时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||
@Schema(description = "辐照开始时间")
|
||||
private Date radiationStartTime;
|
||||
/**辐照结束时间*/
|
||||
@Excel(name = "辐照结束时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
||||
@Schema(description = "测试开始时间")
|
||||
private Date testStartTime;
|
||||
/**测试结束时间*/
|
||||
@Excel(name = "测试结束时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||
@Schema(description = "辐照结束时间")
|
||||
private Date radiationEndTime;
|
||||
@Schema(description = "测试结束时间")
|
||||
private Date testEndTime;
|
||||
/**环境湿度*/
|
||||
@Excel(name = "环境湿度", width = 15)
|
||||
@Schema(description = "环境湿度")
|
||||
private String environmentalHumidity;
|
||||
/**测试参数(json 大字段)*/
|
||||
@Excel(name = "测试参数(json 大字段)", width = 15)
|
||||
@Schema(description = "测试参数(json 大字段)")
|
||||
private String testParameters;
|
||||
/**测试设备(json 大字段)*/
|
||||
@Excel(name = "测试设备(json 大字段)", width = 15)
|
||||
@Schema(description = "测试设备(json 大字段)")
|
||||
private String testEquipment;
|
||||
/**测试计量点*/
|
||||
@Excel(name = "测试计量点", width = 15)
|
||||
@Schema(description = "测试计量点")
|
||||
private String testMeteringPoint;
|
||||
/**测试注量点*/
|
||||
@Excel(name = "测试注量点", width = 15)
|
||||
@Schema(description = "测试注量点")
|
||||
private String testFluencePoint;
|
||||
/**退火时长*/
|
||||
@Excel(name = "退火时长", width = 15)
|
||||
@Schema(description = "退火时长")
|
||||
private String annealingDuration;
|
||||
/**测试数据(json 大字段)*/
|
||||
@Excel(name = "测试数据(json 大字段)", width = 15)
|
||||
@Schema(description = "测试数据(json 大字段)")
|
||||
private String testData;
|
||||
/**测试结果*/
|
||||
@Excel(name = "测试结果", width = 15)
|
||||
@Schema(description = "测试结果")
|
||||
private String testResult;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user