package com.yuanchu.limslaboratory.pojo; import com.baomidou.mybatisplus.annotation.*; import java.time.LocalDate; import java.time.LocalDateTime; import java.io.Serializable; import java.util.Date; import java.util.List; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; /** *

* *

* * @author 江苏鵷雏网络科技有限公司 * @since 2023-08-03 */ @Data @EqualsAndHashCode(callSuper = false) @ApiModel(value="LinkBasicInformation对象", description="") public class LinkBasicInformation implements Serializable { private static final long serialVersionUID = 1L; @ApiModelProperty(value = "主键自增", hidden = true) @TableId(value = "id", type = IdType.AUTO) private Integer id; @ApiModelProperty(value = "委托编码", hidden = true) private String entrustCoding; @ApiModelProperty(value = "委托单位", required = true, example = "阿里巴巴") private String entrusted; @ApiModelProperty(value = "联系人", required = true, example = "小黑") private String contacts; @ApiModelProperty(value = "联系电话", required = true, example = "12321423432") private String contactNumber; @ApiModelProperty(value = "联系地址", required = true, example = "江苏南通") private String contactAddress; @ApiModelProperty(value = "完成期限", required = true, example = "2023-08-03", dataType = "date") private Date completionDeadline; @ApiModelProperty(value = "送样时间", required = true, example = "2023-08-03", dataType = "date") private Date inspectionTime; @ApiModelProperty(value = "送样方式:1送样;2上门", required = true, example = "1") private Integer sampleDeliveryMode; @ApiModelProperty(value = "送样人:如果送样方式选择了送样,那么必填", example = "小白") private String sampleSender; @ApiModelProperty(value = "送样人电话:如果送样方式选择了送样,那么必填", example = "123456789676") private String sampleDeliveryPhone; @ApiModelProperty(value = "报告数", required = true, example = "23") private Integer reportNumber; @ApiModelProperty(value = "委托备注", example = "委托备注YPBH123456789YPBH123456789YPBH123456789") private String entrustRemarks; @TableLogic(value = "1", delval = "0") @ApiModelProperty(value = "逻辑删除 正常>=1,删除<=0", hidden = true) private Integer state; @TableField(fill = FieldFill.INSERT) @ApiModelProperty(value = "创建时间", hidden = true) @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date createTime; @TableField(fill = FieldFill.INSERT_UPDATE) @ApiModelProperty(value = "更新时间", hidden = true) @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date updateTime; @TableField(exist = false) @ApiModelProperty(value = "检验信息") private List linkDetectionList; }