package com.yuanchu.limslaboratory.pojo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.io.Serializable;
|
import java.sql.Date;
|
|
/**
|
* @Author 张宾
|
* @Date 2023/8/9
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class NonConformingFeedback implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
private Integer id;
|
|
/**
|
* 样品编号
|
*/
|
private String materialCode;
|
|
/**
|
* 样品名称
|
*/
|
private String materialName;
|
|
/**
|
* 申请单号
|
*/
|
private String inspectionCode;
|
|
/**
|
* 登记日期
|
*/
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
private Date createTime;
|
|
/**
|
* 实验负责人
|
*/
|
private String testManager;
|
|
/**
|
* 规格型号
|
*/
|
private String specifications;
|
|
/**
|
* 结论0:不合格 ; 1:合格
|
*/
|
private Integer result;
|
}
|