| | |
| | | package com.yuanchu.mom.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | |
| | | import java.io.Serializable; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * 检验下单 |
| | |
| | | /** |
| | | * 下单客户 |
| | | */ |
| | | private String orderingCustomers; |
| | | private String custom; |
| | | |
| | | /** |
| | | * 下单单位 |
| | | */ |
| | | private String orderingUnit; |
| | | private String company; |
| | | |
| | | /** |
| | | * 紧急程度 |
| | | */ |
| | | private String urgency; |
| | | private Integer type; |
| | | |
| | | /** |
| | | * 约定时间 |
| | |
| | | /** |
| | | * 实验室名称 |
| | | */ |
| | | private String laboratoryName; |
| | | private String laboratory; |
| | | |
| | | /** |
| | | * 样品分类 |
| | | * 样品类型 |
| | | */ |
| | | private String sampleClassification; |
| | | private String smapleType; |
| | | |
| | | /** |
| | | * 规格型号 |
| | |
| | | /** |
| | | * 样品数量 |
| | | */ |
| | | private Integer numberSamples; |
| | | private Double sampleNum; |
| | | |
| | | /** |
| | | * 是否留样 |
| | | */ |
| | | private String leaveSample; |
| | | private Integer isLeave; |
| | | |
| | | /** |
| | | * 留样数量 |
| | | */ |
| | | private Integer retainedSamples; |
| | | |
| | | /** |
| | | * 样品类型 |
| | | */ |
| | | private String smapleType; |
| | | |
| | | /** |
| | | * 委托公司 |
| | | */ |
| | | private String entrustCompany; |
| | | |
| | | /** |
| | | * 委托人 |
| | | */ |
| | | private String entrustName; |
| | | |
| | | /** |
| | | * 制单时间 |
| | | |
| | | */ |
| | | private Date documentTime; |
| | | |
| | | /** |
| | | * 委托时间 |
| | | |
| | | */ |
| | | private Date entrustmentTime; |
| | | private Integer leaveNum; |
| | | |
| | | /** |
| | | * 检测进度 |
| | | |
| | | */ |
| | | private String inspectionProgress; |
| | | private String insProgress; |
| | | |
| | | /** |
| | | * 检测结果 |
| | | |
| | | */ |
| | | private String inspectionResult; |
| | | private String insResult; |
| | | |
| | | /** |
| | | * |
| | | * 1:检验处理 0:待审核 2:退回 3:撤销 |
| | | */ |
| | | private Integer state; |
| | | |
| | | private String remark; |
| | | |
| | | @ApiModelProperty("") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Integer createUser; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | private Date createTime; |
| | | |
| | | @ApiModelProperty("创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime createTime; |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | @ApiModelProperty("") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private Integer updateUser; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | private Date updateTime; |
| | | |
| | | @TableField(exist = false) |
| | | private static final long serialVersionUID = 1L; |
| | | @ApiModelProperty("修改时间") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime updateTime; |
| | | } |