package org.jeecg.modules.lims.vo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* @Description: 仪器
|
* @Author: jeecg-boot
|
* @Date: 2022-11-07
|
* @Version: V1.0
|
*/
|
@Data
|
@ApiModel(value="lims_instrument对象", description="仪器")
|
public class LimsInstrumentVo implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**id*/
|
@ApiModelProperty(value = "id")
|
private String id;
|
/**仪器编码*/
|
@Excel(name = "仪器编码", width = 15)
|
@ApiModelProperty(value = "仪器编码")
|
private String code;
|
/**仪器名称*/
|
@Excel(name = "仪器名称", width = 15)
|
@ApiModelProperty(value = "仪器名称")
|
private String name;
|
/**使用状态*/
|
@Excel(name = "使用状态", width = 15)
|
@ApiModelProperty(value = "使用状态")
|
private String used;
|
/**点检状态*/
|
@Excel(name = "点检状态", width = 15)
|
@ApiModelProperty(value = "点检状态")
|
private String inspection;
|
/**仪器类型*/
|
@Excel(name = "仪器类型", width = 15)
|
@ApiModelProperty(value = "仪器类型")
|
private String type;
|
/**仪器类型名称*/
|
@Excel(name = "仪器类型名称", width = 15)
|
@ApiModelProperty(value = "仪器类型名称")
|
private String typeName;
|
/**资产编号*/
|
@Excel(name = "资产编号", width = 15)
|
@ApiModelProperty(value = "资产编号")
|
private String assetNo;
|
/**创建人*/
|
@ApiModelProperty(value = "创建人")
|
private String createBy;
|
/**创建时间*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
@ApiModelProperty(value = "创建时间")
|
private Date createTime;
|
/**更新人*/
|
@ApiModelProperty(value = "更新人")
|
private String updateBy;
|
/**更新时间*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
@ApiModelProperty(value = "更新时间")
|
private Date updateTime;
|
/**备注*/
|
@Excel(name = "备注", width = 15)
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
/**仪器图片*/
|
@Excel(name = "仪器图片", width = 15)
|
@ApiModelProperty(value = "仪器图片")
|
private String imgUrl;
|
|
private List<Integer> appointmentTagStr;
|
}
|