| | |
| | | package com.yuanchu.mom.pojo; |
| | | |
| | | 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 lombok.Data; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * 检验样品 |
| | |
| | | private String joinName; |
| | | |
| | | /** |
| | | * 配套样品数量 |
| | | */ |
| | | private Integer joinNum; |
| | | |
| | | /** |
| | | * 样品编码 |
| | | */ |
| | | private String sampleCode; |
| | |
| | | private String model; |
| | | |
| | | /** |
| | | * 是否留样 1:留样 0:不留样 |
| | | */ |
| | | private Integer isLeave; |
| | | |
| | | /** |
| | | * 留样数量 |
| | | */ |
| | | private Integer leaveNum; |
| | | |
| | | /** |
| | | * 检测进度 |
| | | |
| | | */ |
| | | private String insProgress; |
| | | |
| | | /** |
| | | * 检验状态(0:待检验1:检验中 2:已检验3:待复核4:复核未通过5:复核通过) |
| | | */ |
| | | private Integer insState; |
| | | |
| | | /** |
| | | * 下发时间 |
| | | */ |
| | | private Date sendTime; |
| | | |
| | | /** |
| | | * 配套样品数量 |
| | | */ |
| | | private Integer joinNum; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | private String remark; |
| | | |
| | | /** |
| | | * 约定时间 |
| | | */ |
| | | private Date appointed; |
| | | private Integer standardMethodListId; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | @ApiModelProperty("样品单位") |
| | | private String unit; |
| | | |
| | | private Integer cellId; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private Integer updateUser; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @ApiModelProperty("创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime createTime; |
| | | |
| | | /** |
| | | * |
| | | */ |
| | | private Date updateTime; |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private Integer updateUser; |
| | | |
| | | @ApiModelProperty("修改时间") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime updateTime; |
| | | } |