BillLandingInspection.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. package com.huimv.farm.damsubsidy.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.baomidou.mybatisplus.annotation.IdType;
  4. import java.time.LocalDate;
  5. import com.baomidou.mybatisplus.annotation.TableId;
  6. import java.util.Date;
  7. import java.io.Serializable;
  8. import lombok.Data;
  9. import lombok.EqualsAndHashCode;
  10. import lombok.experimental.Accessors;
  11. /**
  12. * <p>
  13. * 落地检
  14. * </p>
  15. *
  16. * @author author
  17. * @since 2023-04-26
  18. */
  19. @Data
  20. @EqualsAndHashCode(callSuper = false)
  21. @Accessors(chain = true)
  22. @TableName("bill_landing_inspection")
  23. public class BillLandingInspection extends BaseEntity implements Serializable {
  24. private static final long serialVersionUID = 1L;
  25. @TableId(value = "id", type = IdType.AUTO)
  26. private Integer id;
  27. private String inspectionName;
  28. /**
  29. * old审核进度; 0待受理,1已拒绝,2审核中,3审核通过,4审核不通过
  30. *
  31. * 0待审核、1待隔离、2隔离中、3已完成(包括已驳回)
  32. */
  33. private Integer inspectionSch;
  34. /**
  35. * 类型; 0落地检,
  36. */
  37. private Integer inspectionType;
  38. /**
  39. * 检疫证号
  40. */
  41. private String inspectionNum;
  42. /**
  43. * 货主
  44. */
  45. private String cargoOwner;
  46. /**
  47. * 货主手机
  48. */
  49. private String ownerPhone;
  50. /**
  51. * 0肉牛,1羊,2猪
  52. */
  53. private Integer animalType;
  54. /**
  55. * 数量及单位
  56. */
  57. private String animalUmberUp;
  58. /**
  59. * 数量
  60. */
  61. private Integer animalUmber;
  62. /**
  63. * 用途
  64. */
  65. private String useTo;
  66. /**
  67. * 启运地点
  68. */
  69. private String startTran;
  70. /**
  71. * 到达地点
  72. */
  73. private String reachTran;
  74. /**
  75. * 耳标号
  76. */
  77. private String eartags;
  78. /**
  79. * 审核人
  80. */
  81. private String reviewed;
  82. /**
  83. * 审核时间
  84. */
  85. private LocalDate reviewedTime;
  86. /**
  87. * 驳回理由
  88. */
  89. private String rejectReason;
  90. }