BillCleanBefore.java 2.3 KB

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