package com.yuanchu.limslaboratory.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import java.time.LocalDateTime;
|
import java.io.Serializable;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author 江苏鵷雏网络科技有限公司
|
* @since 2023-07-20
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@ApiModel(value="Instrument对象", description="")
|
public class Instrument implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@ApiModelProperty(value = "主键")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
@ApiModelProperty(value = "分类ID 关联")
|
private Integer classifyId;
|
|
@ApiModelProperty(value = "仪器设备编号")
|
private String equipmentCode;
|
|
@ApiModelProperty(value = "仪器设备名称")
|
private String equipmentName;
|
|
@ApiModelProperty(value = "默认1;1:运行、2:故障、3:报修、4:检修、5:待机")
|
private Integer condition;
|
|
@ApiModelProperty(value = "规格型号")
|
private String specificationsModels;
|
|
@ApiModelProperty(value = "测量范围")
|
private String measuringRange;
|
|
@ApiModelProperty(value = "误差")
|
private String errorRate;
|
|
@ApiModelProperty(value = "生产厂家")
|
private String manufacturer;
|
|
@ApiModelProperty(value = "到货日期")
|
private LocalDateTime arrivalDate;
|
|
@ApiModelProperty(value = "验收日期")
|
private LocalDateTime acceptanceDate;
|
|
@ApiModelProperty(value = "存放地")
|
private String storagePlace;
|
|
@ApiModelProperty(value = "保管人")
|
private Integer keeper;
|
|
@ApiModelProperty(value = "是否支持数采")
|
private Integer whetherDataAcquisition;
|
|
@ApiModelProperty(value = "是否需要仪器设备计量:如果需要计量周期必填;如果不需要计量周期不必填")
|
private Integer equipmentMeasurement;
|
|
@ApiModelProperty(value = "计量截止有效期")
|
private LocalDateTime termValidity;
|
|
@ApiModelProperty(value = "描述")
|
private String describe;
|
|
@ApiModelProperty(value = "创建时间")
|
private LocalDateTime createTime;
|
|
@ApiModelProperty(value = "更新时间")
|
private LocalDateTime updateTime;
|
|
@ApiModelProperty(value = "逻辑删除")
|
private Integer state;
|
|
@ApiModelProperty(value = "乐观锁")
|
private Integer version;
|
|
|
}
|