BillCleanBefore.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. package com.huimv.receive.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.baomidou.mybatisplus.annotation.IdType;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import java.time.LocalDateTime;
  6. import java.io.Serializable;
  7. import lombok.Data;
  8. import lombok.EqualsAndHashCode;
  9. import lombok.experimental.Accessors;
  10. /**
  11. * <p>
  12. * 洗消表
  13. * </p>
  14. *
  15. * @author author
  16. * @since 2024-03-11
  17. */
  18. @Data
  19. @EqualsAndHashCode(callSuper = false)
  20. @Accessors(chain = true)
  21. @TableName("bill_clean_before")
  22. public class BillCleanBefore implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. @TableId(value = "id", type = IdType.AUTO)
  25. private Integer id;
  26. /**
  27. * 来访类型 0人员 1环保车 2拉猪车 3饲料车 4送猪车 5物资车 6送餐
  28. */
  29. private Integer vistitType;
  30. /**
  31. * 目的地
  32. */
  33. private String destName;
  34. /**
  35. * 目的地 id
  36. */
  37. private Integer destId;
  38. /**
  39. * 申请人
  40. */
  41. private String admissionUserName;
  42. /**
  43. * 申请人id
  44. */
  45. private Integer admissionUserId;
  46. /**
  47. * 来访时间
  48. */
  49. private LocalDateTime vistitDate;
  50. /**
  51. * 提交时间
  52. */
  53. private LocalDateTime subDate;
  54. private String farmId;
  55. /**
  56. * 当前状态 0待审批 1合格 2异常
  57. */
  58. private Integer billStatus;
  59. /**
  60. * 处理时间
  61. */
  62. private LocalDateTime passDate;
  63. /**
  64. * 处理人
  65. */
  66. private String passUserName;
  67. /**
  68. * 处理人id
  69. */
  70. private Integer passUserId;
  71. /**
  72. * 进程id
  73. */
  74. private Integer processId;
  75. /**
  76. * 检测时间
  77. */
  78. private LocalDateTime checkDate;
  79. /**
  80. * 检测地点
  81. */
  82. private String testLocation;
  83. private Integer testLocationId;
  84. /**
  85. * 手机号
  86. */
  87. private String phone;
  88. /**
  89. * 车牌号
  90. */
  91. private String carNum;
  92. /**
  93. * 视频地址
  94. */
  95. private String imgUrl;
  96. /**
  97. * 0待上传 1已上传
  98. */
  99. private Integer imgStatus;
  100. }