BillPersonnelAdmission.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. /**
  12. * <p>
  13. * 入场申请
  14. * </p>
  15. *
  16. * @author author
  17. * @since 2023-07-21
  18. */
  19. @Data
  20. @EqualsAndHashCode(callSuper = false)
  21. @Accessors(chain = true)
  22. @TableName("bill_personnel_admission")
  23. public class BillPersonnelAdmission implements Serializable {
  24. private static final long serialVersionUID = 1L;
  25. @TableId(value = "id", type = IdType.AUTO)
  26. private Integer id;
  27. /**
  28. * 0正常入场 1紧急入场
  29. */
  30. private Integer admissionType;
  31. /**
  32. * 来访类型 0人员 1环保车 2拉猪车 3饲料车 4送猪车 5物资车 6送餐
  33. */
  34. private Integer vistitType;
  35. /**
  36. * 出发地
  37. */
  38. private String departureName;
  39. /**
  40. * 出发地 id
  41. */
  42. private Integer departureId;
  43. /**
  44. * 目的地
  45. */
  46. private String destName;
  47. /**
  48. * 目的地 id
  49. */
  50. private Integer destId;
  51. /**
  52. * 申请人
  53. */
  54. private String admissionUserName;
  55. /**
  56. * 申请人id
  57. */
  58. private Integer admissionUserId;
  59. /**
  60. * 来访时间
  61. */
  62. @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
  63. private LocalDateTime vistitDate;
  64. /**
  65. * 提交时间
  66. */
  67. @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
  68. private LocalDateTime subDate;
  69. /**
  70. * 手机号
  71. */
  72. private String phone;
  73. /**
  74. * 单位名称
  75. */
  76. private String workName;
  77. /**
  78. * 证件类型
  79. */
  80. private Integer papersType;
  81. /**
  82. * 证件号码
  83. */
  84. private String papersCode;
  85. /**
  86. * 照片地址
  87. */
  88. private String imgUrl;
  89. /**
  90. * 来访理由
  91. */
  92. private String vistitReson;
  93. private Integer farmId;
  94. /**
  95. * 当前状态 0待审批 1通过 2拒绝
  96. */
  97. private Integer billStatus;
  98. /**
  99. * 处理时间
  100. */
  101. @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
  102. private LocalDateTime passDate;
  103. /**
  104. * 处理人
  105. */
  106. private String passUserName;
  107. /**
  108. * 处理人id
  109. */
  110. private Integer passUserId;
  111. /**
  112. * 进程id
  113. */
  114. private Integer processId;
  115. private String carNum;
  116. private String source;
  117. private String userImgUrl;
  118. private String resource;
  119. private String feedImgUrl;
  120. private Integer cleanId;
  121. private String cleanName;
  122. private String remark;
  123. /*
  124. * 0没有 1有
  125. */
  126. private Integer isCarry;
  127. /*
  128. * 物品照片地址
  129. */
  130. private String picUrl;
  131. private Integer midId;
  132. private String midName;
  133. private String farmName;
  134. }