update
This commit is contained in:
@@ -1,89 +1,123 @@
|
|||||||
package org.jeecg.modules.database.entity;
|
package org.jeecg.modules.database.entity;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import com.baomidou.mybatisplus.annotation.*;
|
||||||
import java.io.UnsupportedEncodingException;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
import com.baomidou.mybatisplus.annotation.IdType;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableId;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableName;
|
|
||||||
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
||||||
import lombok.Data;
|
|
||||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
|
||||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
||||||
import org.jeecg.common.aspect.annotation.Dict;
|
|
||||||
import io.swagger.v3.oas.annotations.media.Schema;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
import lombok.EqualsAndHashCode;
|
import lombok.EqualsAndHashCode;
|
||||||
import lombok.experimental.Accessors;
|
import lombok.experimental.Accessors;
|
||||||
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||||
|
import org.springframework.format.annotation.DateTimeFormat;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @Description: 试验加偏设备信息
|
* @Description: 试验加偏设备信息
|
||||||
* @Author: jeecg-boot
|
* @Author: jeecg-boot
|
||||||
* @Date: 2024-12-05
|
* @Date: 2024-12-05
|
||||||
* @Version: V1.0
|
* @Version: V1.0
|
||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
@TableName("experiment_deviation_equipment")
|
@TableName("experiment_deviation_equipment")
|
||||||
@Accessors(chain = true)
|
@Accessors(chain = true)
|
||||||
@EqualsAndHashCode(callSuper = false)
|
@EqualsAndHashCode(callSuper = false)
|
||||||
@Schema(description="试验加偏设备信息")
|
@Schema(description = "试验加偏设备信息")
|
||||||
public class ExperimentDeviationEquipment implements Serializable {
|
public class ExperimentDeviationEquipment implements Serializable {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/**主键*/
|
/**
|
||||||
@TableId(type = IdType.ASSIGN_ID)
|
* 主键
|
||||||
|
*/
|
||||||
|
@TableId(type = IdType.ASSIGN_ID)
|
||||||
@Schema(description = "主键")
|
@Schema(description = "主键")
|
||||||
private java.lang.String id;
|
private java.lang.String id;
|
||||||
/**创建人*/
|
/**
|
||||||
|
* 创建人
|
||||||
|
*/
|
||||||
@Schema(description = "创建人")
|
@Schema(description = "创建人")
|
||||||
private java.lang.String createBy;
|
private java.lang.String createBy;
|
||||||
/**创建日期*/
|
/**
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
* 创建日期
|
||||||
@DateTimeFormat(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")
|
||||||
@Schema(description = "创建日期")
|
@Schema(description = "创建日期")
|
||||||
private java.util.Date createTime;
|
private java.util.Date createTime;
|
||||||
/**更新人*/
|
/**
|
||||||
|
* 更新人
|
||||||
|
*/
|
||||||
@Schema(description = "更新人")
|
@Schema(description = "更新人")
|
||||||
private java.lang.String updateBy;
|
private java.lang.String updateBy;
|
||||||
/**更新日期*/
|
/**
|
||||||
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
* 更新日期
|
||||||
@DateTimeFormat(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")
|
||||||
@Schema(description = "更新日期")
|
@Schema(description = "更新日期")
|
||||||
private java.util.Date updateTime;
|
private java.util.Date updateTime;
|
||||||
/**所属部门*/
|
/**
|
||||||
|
* 所属部门
|
||||||
|
*/
|
||||||
@Schema(description = "所属部门")
|
@Schema(description = "所属部门")
|
||||||
private java.lang.String sysOrgCode;
|
private java.lang.String sysOrgCode;
|
||||||
/**试验ID*/
|
/**
|
||||||
@Excel(name = "试验ID", width = 15)
|
* 试验ID
|
||||||
|
*/
|
||||||
|
@Excel(name = "试验ID", width = 15)
|
||||||
@Schema(description = "试验ID")
|
@Schema(description = "试验ID")
|
||||||
private java.lang.String experimentId;
|
private java.lang.String experimentId;
|
||||||
/**样品类型*/
|
/**
|
||||||
@Excel(name = "样品类型", width = 15)
|
* 样品类型
|
||||||
|
*/
|
||||||
|
@Excel(name = "样品类型", width = 15)
|
||||||
@Schema(description = "样品类型")
|
@Schema(description = "样品类型")
|
||||||
private java.lang.String sampleType;
|
private java.lang.String sampleType;
|
||||||
/**样品型号*/
|
/**
|
||||||
@Excel(name = "样品型号", width = 15)
|
* 样品型号
|
||||||
|
*/
|
||||||
|
@Excel(name = "样品型号", width = 15)
|
||||||
@Schema(description = "样品型号")
|
@Schema(description = "样品型号")
|
||||||
private java.lang.String sampleModel;
|
private java.lang.String sampleModel;
|
||||||
/**设备型号*/
|
/**
|
||||||
@Excel(name = "设备型号", width = 15)
|
* 设备型号
|
||||||
|
*/
|
||||||
|
@Excel(name = "设备型号", width = 15)
|
||||||
@Schema(description = "设备型号")
|
@Schema(description = "设备型号")
|
||||||
private java.lang.String equipmentModel;
|
private java.lang.String equipmentModel;
|
||||||
/**设备名称*/
|
/**
|
||||||
@Excel(name = "设备名称", width = 15)
|
* 设备名称
|
||||||
|
*/
|
||||||
|
@Excel(name = "设备名称", width = 15)
|
||||||
@Schema(description = "设备名称")
|
@Schema(description = "设备名称")
|
||||||
private java.lang.String equipmentName;
|
private java.lang.String equipmentName;
|
||||||
/**设备类型*/
|
/**
|
||||||
@Excel(name = "设备类型", width = 15)
|
* 设备类型
|
||||||
|
*/
|
||||||
|
@Excel(name = "设备类型", width = 15)
|
||||||
@Schema(description = "设备类型")
|
@Schema(description = "设备类型")
|
||||||
private java.lang.String equipmentType;
|
private java.lang.String equipmentType;
|
||||||
/**图片*/
|
/**
|
||||||
@Excel(name = "图片", width = 15)
|
* 图片
|
||||||
|
*/
|
||||||
|
@Excel(name = "图片", width = 15)
|
||||||
@Schema(description = "图片")
|
@Schema(description = "图片")
|
||||||
private java.lang.String sampleImage;
|
private java.lang.String sampleImage;
|
||||||
/**计量有效期*/
|
/**
|
||||||
@Excel(name = "计量有效期", width = 15)
|
* 计量有效期
|
||||||
|
*/
|
||||||
|
@Excel(name = "计量有效期", width = 15)
|
||||||
@Schema(description = "计量有效期")
|
@Schema(description = "计量有效期")
|
||||||
private java.lang.String measurementValidity;
|
private java.lang.String measurementValidity;
|
||||||
|
/**
|
||||||
|
* 房间号
|
||||||
|
*/
|
||||||
|
@Excel(name = "房间号", width = 15)
|
||||||
|
@Schema(description = "房间号")
|
||||||
|
private java.lang.String roomNo;
|
||||||
|
/**
|
||||||
|
* 设备编号
|
||||||
|
*/
|
||||||
|
@Excel(name = "设备编号", width = 15)
|
||||||
|
@Schema(description = "设备编号")
|
||||||
|
private java.lang.String equipmentNo;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user