lxw
2022-09-20 c36210f961aa55a0e8558e16f96c07e2fbe5d9aa
src/main/java/com/whyc/pojo/FileParam.java
@@ -1,6 +1,7 @@
package com.whyc.pojo;
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.*;
@@ -34,6 +35,7 @@
    private String fileId;
    @ApiModelProperty(value = "测试时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date testTime;
    @ApiModelProperty(value = "版本")
@@ -41,6 +43,7 @@
    private String version;
    @ApiModelProperty(value = "上传时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date uploadTime;
    @ApiModelProperty(value = "是否上传标志(0:没有上传 1:已上传)")
@@ -127,5 +130,9 @@
    @ApiModelProperty(value = "内阻计算方式(0:手动 1:自动)")
    private Integer evaluationMode;
    @ApiModelProperty(value = "机房名称")
    @TableField(exist = false)
    private String stationName;
}