BillDry.java 2.4 KB

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