123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- package com.huimv.receive.entity;
- 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 lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- import java.io.Serializable;
- import java.time.LocalDateTime;
- import java.util.Date;
- /**
- * <p>
- * 洗消表
- * </p>
- *
- * @author author
- * @since 2023-08-18
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("bill_dry")
- public class BillDry implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 来访类型 0人员 1环保车 2拉猪车 3饲料车 4送猪车 5物资车 6送餐
- */
- private Integer vistitType;
- /**
- * 目的地
- */
- private String destName;
- /**
- * 目的地 id
- */
- private Integer destId;
- /**
- * 申请人
- */
- private String admissionUserName;
- /**
- * 申请人id
- */
- private Integer admissionUserId;
- /**
- * 来访时间
- */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
- private LocalDateTime vistitDate;
- /**
- * 提交时间
- */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
- private LocalDateTime subDate;
- private Integer farmId;
- /**
- * 当前状态 0待审批 1合格 2异常
- */
- private Integer billStatus;
- /**
- * 处理时间
- */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
- private Date passDate;
- /**
- * 处理人
- */
- private String passUserName;
- /**
- * 处理人id
- */
- private Integer passUserId;
- /**
- * 进程id
- */
- private Integer processId;
- /**
- * 检测时间
- */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
- private Date checkDate;
- /**
- * 检测地点
- */
- private String testLocation;
- private Integer testLocationId;
- /**
- * 手机号
- */
- private String phone;
- /**
- * 车牌号
- */
- private String carNum;
- /**
- * 烘干照片
- */
- private String imgUrl;
- private Integer imgStatus;
- private String dryTime;
- private String dryTem;
- private String departureName;
- private Integer departureId;
- }
|