BillPcr.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. * pcr 表
  15. * </p>
  16. *
  17. * @author author
  18. * @since 2023-07-21
  19. */
  20. @Data
  21. @EqualsAndHashCode(callSuper = false)
  22. @Accessors(chain = true)
  23. @TableName("bill_pcr")
  24. public class BillPcr implements Serializable {
  25. private static final long serialVersionUID = 1L;
  26. @TableId(value = "id", type = IdType.AUTO)
  27. private Integer id;
  28. /**
  29. * 0正常 1复审
  30. */
  31. private Integer pcrType;
  32. /**
  33. * 来访类型 0人员 1环保车 2拉猪车 3饲料车 4送猪车 5物资车 6送餐
  34. */
  35. private Integer vistitType;
  36. /**
  37. * 目的地
  38. */
  39. private String destName;
  40. /**
  41. * 目的地 id
  42. */
  43. private Integer destId;
  44. /**
  45. * 申请人
  46. */
  47. private String admissionUserName;
  48. /**
  49. * 申请人id
  50. */
  51. private Integer admissionUserId;
  52. /**
  53. * 来访时间
  54. */
  55. @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
  56. private LocalDateTime vistitDate;
  57. /**
  58. * 提交时间
  59. */
  60. @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
  61. private LocalDateTime subDate;
  62. /**
  63. * 检测时间
  64. */
  65. @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
  66. private Date checkDate;
  67. /**
  68. * 当前状态 0待审批 1合格 2异常 3已失效
  69. */
  70. private Integer billStatus;
  71. /**
  72. * 处理时间
  73. */
  74. @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
  75. private Date passDate;
  76. /**
  77. * 处理人
  78. */
  79. private String passUserName;
  80. /**
  81. * 处理人id
  82. */
  83. private Integer passUserId;
  84. /**
  85. * 进程id
  86. */
  87. private Integer processId;
  88. private Integer farmId;
  89. private String testLocation;
  90. private Integer testLocationId;
  91. private Integer admissionId;
  92. private String phone;
  93. private String carNum;
  94. private String qualifiedDate;
  95. }