lius
2023-07-07 daf5a28d644cece1e19972521f0d6f19dfef20a4
lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/entity/MdcTorqueConfig.java
@@ -7,6 +7,7 @@
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiOperation;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
@@ -40,43 +41,43 @@
    /**
     * 设备编号
     */
    @Excel(name = "设备编号",width = 15)
    @Excel(name = "设备编号", width = 15)
    @ApiModelProperty("设备编号")
    private String equipmentId;
    /**
     * 设备名称
     */
    @Excel(name = "设备名称",width = 15)
    @Excel(name = "设备名称", width = 15)
    @ApiModelProperty("设备名称")
    private String equipmentName;
    /**
     * 日期
     * 时间
     */
    @JsonFormat(timezone = "GMT+8",pattern = "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")
    @ApiModelProperty(value = "日期")
    private Date date;
    @ApiModelProperty(value = "时间")
    private Date torqueDate;
    /**
     * 扭矩值
     */
    @Excel(name = "扭矩值",width = 15)
    @Excel(name = "扭矩值", width = 15)
    @ApiModelProperty("扭矩值")
    private float torqueValue;
    /**
     * 备注
     */
    @Excel(name = "备注",width = 15)
    @Excel(name = "备注", width = 15)
    @ApiModelProperty("备注")
    private String notes;
    /**
     * 创建时间
     */
    @JsonFormat(timezone = "GMY+8",pattern = "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")
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
@@ -84,14 +85,14 @@
    /**
     * 创建人
     */
    @Excel(name = "创建人",width = 15)
    @Excel(name = "创建人", width = 15)
    @ApiModelProperty("创建人")
    private String createBy;
    /**
     * 更新时间
     */
    @JsonFormat(timezone = "GMY+8",pattern = "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")
    @ApiModelProperty("更新时间")
    private Date updateTime;
@@ -99,7 +100,7 @@
    /**
     * 更新人
     */
    @Excel(name = "更新人",width = 15)
    @Excel(name = "更新人", width = 15)
    @ApiModelProperty("更新人")
    private String updateBy;