123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- package com.huimv.farm.damsubsidy.entity;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.baomidou.mybatisplus.annotation.IdType;
- import java.time.LocalDate;
- import com.baomidou.mybatisplus.annotation.TableId;
- import java.util.Date;
- import java.io.Serializable;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- /**
- * <p>
- * 落地检
- * </p>
- *
- * @author author
- * @since 2023-04-26
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("bill_landing_inspection")
- public class BillLandingInspection extends BaseEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- private String inspectionName;
- /**
- * old审核进度; 0待受理,1已拒绝,2审核中,3审核通过,4审核不通过
- *
- * 0待审核、1待隔离、2隔离中、3已完成(包括已驳回)
- */
- private Integer inspectionSch;
- /**
- * 类型; 0落地检,
- */
- private Integer inspectionType;
- /**
- * 检疫证号
- */
- private String inspectionNum;
- /**
- * 货主
- */
- private String cargoOwner;
- /**
- * 货主手机
- */
- private String ownerPhone;
- /**
- * 0肉牛,1羊,2猪
- */
- private Integer animalType;
- /**
- * 数量及单位
- */
- private String animalUmberUp;
- /**
- * 数量
- */
- private Integer animalUmber;
- /**
- * 用途
- */
- private String useTo;
- /**
- * 启运地点
- */
- private String startTran;
- /**
- * 到达地点
- */
- private String reachTran;
- /**
- * 耳标号
- */
- private String eartags;
- /**
- * 审核人
- */
- private String reviewed;
- /**
- * 审核时间
- */
- private LocalDate reviewedTime;
- /**
- * 驳回理由
- */
- private String rejectReason;
- }
|