TBBeforehandEntity.java 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. package cn.com.lzt.sign.entity;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import javax.persistence.*;
  5. import org.hibernate.annotations.GenericGenerator;
  6. @Entity
  7. @Table(name = "t_b_beforehand", schema = "")
  8. public class TBBeforehandEntity
  9. implements Serializable
  10. {
  11. private String id;
  12. private String beforehandDept;
  13. private Date beforehandDate;
  14. private String beforehandDeptId;
  15. private String beforehandReceiveUser;
  16. private String beforehandPost;
  17. private String beforehandStation;
  18. private String beforehandAccompanyUser;
  19. private String beforehandReceiveDapt;
  20. private Integer beforehandNum;
  21. private Date beforehandStartDate;
  22. private Date beforehandEndDate;
  23. private String beforehandDay;
  24. private String beforehandReason;
  25. private String beforehandApprove;
  26. private String beforehandApproveId;
  27. private String beforehandFileUrl;
  28. private String beforehandFilename;
  29. private String beforehandSpareOne;
  30. private String beforehandSpareTwo;
  31. private String createName;
  32. private String createBy;
  33. private Date createDate;
  34. private String updateName;
  35. private String updateBy;
  36. private Date updateDate;
  37. private String requestId;
  38. private String beforehandStartDateStr;
  39. private String beforehandEndDateStr;
  40. @Transient
  41. public String getBeforehandStartDateStr() {
  42. return beforehandStartDateStr;
  43. }
  44. public void setBeforehandStartDateStr(String beforehandStartDateStr) {
  45. this.beforehandStartDateStr = beforehandStartDateStr;
  46. }
  47. @Transient
  48. public String getBeforehandEndDateStr() {
  49. return beforehandEndDateStr;
  50. }
  51. public void setBeforehandEndDateStr(String beforehandEndDateStr) {
  52. this.beforehandEndDateStr = beforehandEndDateStr;
  53. }
  54. @Column(name = "request_id", nullable = true, length = 255)
  55. public String getRequestId() {
  56. return requestId;
  57. }
  58. public void setRequestId(String requestId) {
  59. this.requestId = requestId;
  60. }
  61. @Id
  62. @GeneratedValue(generator = "paymentableGenerator")
  63. @GenericGenerator(name = "paymentableGenerator", strategy = "uuid")
  64. @Column(name = "id", nullable = true, length = 255)
  65. public String getId() {
  66. /* 131 */ return this.id;
  67. }
  68. public void setId(String id) {
  69. /* 135 */ this.id = id;
  70. }
  71. @Column(name = "beforehand_dept", nullable = true, length = 255)
  72. public String getBeforehandDept() {
  73. /* 142 */ return this.beforehandDept;
  74. }
  75. public void setBeforehandDept(String beforehandDept) {
  76. /* 146 */ this.beforehandDept = beforehandDept;
  77. }
  78. @Column(name = "beforehand_dept_id", nullable = true, length = 255)
  79. public String getBeforehandDeptId() {
  80. /* 153 */ return this.beforehandDeptId;
  81. }
  82. public void setBeforehandDeptId(String beforehandDeptId) {
  83. /* 157 */ this.beforehandDeptId = beforehandDeptId;
  84. }
  85. @Column(name = "beforehand_receive_user", nullable = true, length = 255)
  86. public String getBeforehandReceiveUser() {
  87. /* 164 */ return this.beforehandReceiveUser;
  88. }
  89. public void setBeforehandReceiveUser(String beforehandReceiveUser) {
  90. /* 168 */ this.beforehandReceiveUser = beforehandReceiveUser;
  91. }
  92. @Column(name = "beforehand_post", nullable = true, length = 255)
  93. public String getBeforehandPost() {
  94. /* 175 */ return this.beforehandPost;
  95. }
  96. public void setBeforehandPost(String beforehandPost) {
  97. /* 179 */ this.beforehandPost = beforehandPost;
  98. }
  99. @Column(name = "beforehand_station", nullable = true, length = 255)
  100. public String getBeforehandStation() {
  101. /* 186 */ return this.beforehandStation;
  102. }
  103. public void setBeforehandStation(String beforehandStation) {
  104. /* 190 */ this.beforehandStation = beforehandStation;
  105. }
  106. @Column(name = "beforehand_accompany_user", nullable = true, length = 255)
  107. public String getBeforehandAccompanyUser() {
  108. /* 197 */ return this.beforehandAccompanyUser;
  109. }
  110. public void setBeforehandAccompanyUser(String beforehandAccompanyUser) {
  111. /* 201 */ this.beforehandAccompanyUser = beforehandAccompanyUser;
  112. }
  113. @Column(name = "beforehand_receive_dapt", nullable = true, length = 255)
  114. public String getBeforehandReceiveDapt() {
  115. /* 208 */ return this.beforehandReceiveDapt;
  116. }
  117. public void setBeforehandReceiveDapt(String beforehandReceiveDapt) {
  118. /* 212 */ this.beforehandReceiveDapt = beforehandReceiveDapt;
  119. }
  120. @Column(name = "beforehand_num", nullable = true, length = 255)
  121. public Integer getBeforehandNum() {
  122. /* 219 */ return this.beforehandNum;
  123. }
  124. public void setBeforehandNum(Integer beforehandNum) {
  125. /* 223 */ this.beforehandNum = beforehandNum;
  126. }
  127. @Column(name = "beforehand_start_date", nullable = true, length = 255)
  128. public Date getBeforehandStartDate() {
  129. /* 230 */ return this.beforehandStartDate;
  130. }
  131. public void setBeforehandStartDate(Date beforehandStartDate) {
  132. /* 234 */ this.beforehandStartDate = beforehandStartDate;
  133. }
  134. @Column(name = "beforehand_end_date", nullable = true, length = 255)
  135. public Date getBeforehandEndDate() {
  136. /* 241 */ return this.beforehandEndDate;
  137. }
  138. public void setBeforehandEndDate(Date beforehandEndDate) {
  139. /* 245 */ this.beforehandEndDate = beforehandEndDate;
  140. }
  141. @Column(name = "beforehand_day", nullable = true, length = 255)
  142. public String getBeforehandDay() {
  143. /* 252 */ return this.beforehandDay;
  144. }
  145. public void setBeforehandDay(String beforehandDay) {
  146. /* 256 */ this.beforehandDay = beforehandDay;
  147. }
  148. @Column(name = "beforehand_reason", nullable = true, length = 255)
  149. public String getBeforehandReason() {
  150. /* 263 */ return this.beforehandReason;
  151. }
  152. public void setBeforehandReason(String beforehandReason) {
  153. /* 267 */ this.beforehandReason = beforehandReason;
  154. }
  155. @Column(name = "beforehand_approve", nullable = true, length = 255)
  156. public String getBeforehandApprove() {
  157. /* 274 */ return this.beforehandApprove;
  158. }
  159. public void setBeforehandApprove(String beforehandApprove) {
  160. /* 278 */ this.beforehandApprove = beforehandApprove;
  161. }
  162. @Column(name = "beforehand_approve_id", nullable = true, length = 255)
  163. public String getBeforehandApproveId() {
  164. /* 285 */ return this.beforehandApproveId;
  165. }
  166. public void setBeforehandApproveId(String beforehandApproveId) {
  167. /* 289 */ this.beforehandApproveId = beforehandApproveId;
  168. }
  169. @Column(name = "beforehand_file_url", nullable = true, length = 255)
  170. public String getBeforehandFileUrl() {
  171. /* 296 */ return this.beforehandFileUrl;
  172. }
  173. public void setBeforehandFileUrl(String beforehandFileUrl) {
  174. /* 300 */ this.beforehandFileUrl = beforehandFileUrl;
  175. }
  176. @Column(name = "beforehand_filename", nullable = true, length = 255)
  177. public String getBeforehandFilename() {
  178. /* 307 */ return this.beforehandFilename;
  179. }
  180. public void setBeforehandFilename(String beforehandFilename) {
  181. /* 311 */ this.beforehandFilename = beforehandFilename;
  182. }
  183. @Column(name = "beforehand_spare_one", nullable = true, length = 255)
  184. public String getBeforehandSpareOne() {
  185. /* 318 */ return this.beforehandSpareOne;
  186. }
  187. public void setBeforehandSpareOne(String beforehandSpareOne) {
  188. /* 322 */ this.beforehandSpareOne = beforehandSpareOne;
  189. }
  190. @Column(name = "beforehand_spare_two", nullable = true, length = 255)
  191. public String getBeforehandSpareTwo() {
  192. /* 329 */ return this.beforehandSpareTwo;
  193. }
  194. public void setBeforehandSpareTwo(String beforehandSpareTwo) {
  195. /* 333 */ this.beforehandSpareTwo = beforehandSpareTwo;
  196. }
  197. @Column(name = "create_name", nullable = true, length = 255)
  198. public String getCreateName() {
  199. /* 340 */ return this.createName;
  200. }
  201. public void setCreateName(String createName) {
  202. /* 344 */ this.createName = createName;
  203. }
  204. @Column(name = "create_by", nullable = true, length = 255)
  205. public String getCreateBy() {
  206. /* 351 */ return this.createBy;
  207. }
  208. public void setCreateBy(String createBy) {
  209. /* 355 */ this.createBy = createBy;
  210. }
  211. @Column(name = "create_date", nullable = true, length = 255)
  212. public Date getCreateDate() {
  213. /* 362 */ return this.createDate;
  214. }
  215. public void setCreateDate(Date createDate) {
  216. /* 366 */ this.createDate = createDate;
  217. }
  218. @Column(name = "update_name", nullable = true, length = 255)
  219. public String getUpdateName() {
  220. /* 373 */ return this.updateName;
  221. }
  222. public void setUpdateName(String updateName) {
  223. /* 377 */ this.updateName = updateName;
  224. }
  225. @Column(name = "update_by", nullable = true, length = 255)
  226. public String getUpdateBy() {
  227. /* 384 */ return this.updateBy;
  228. }
  229. public void setUpdateBy(String updateBy) {
  230. /* 388 */ this.updateBy = updateBy;
  231. }
  232. @Column(name = "update_date", nullable = true, length = 255)
  233. public Date getUpdateDate() {
  234. /* 395 */ return this.updateDate;
  235. }
  236. public void setUpdateDate(Date updateDate) {
  237. /* 399 */ this.updateDate = updateDate;
  238. }
  239. @Column(name = "beforehand_date", nullable = true, length = 255)
  240. public Date getBeforehandDate() {
  241. return beforehandDate;
  242. }
  243. public void setBeforehandDate(Date beforehandDate) {
  244. this.beforehandDate = beforehandDate;
  245. }
  246. }