TBOfficeEntity.java 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  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_office", schema = "")
  8. public class TBOfficeEntity
  9. implements Serializable
  10. {
  11. private String id;
  12. private String officeDept;
  13. private String officeDeptId;
  14. private String officeTravelUser;
  15. private String officeDriveUser;
  16. private String officeAddress;
  17. private Date officeStartDate;
  18. private Date officeEndDate;
  19. private String officeStartDateStr;
  20. private String officeEndDateStr;
  21. private String officeDay;
  22. private String officeCont;
  23. private String officeApprove;
  24. private String officeApproveId;
  25. private String officeFileUrl;
  26. private String officeFilename;
  27. private String officeSpareOne;
  28. private String officeSpareTwo;
  29. private String createName;
  30. private String createBy;
  31. private Date createDate;
  32. private String updateName;
  33. private String updateBy;
  34. private Date updateDate;
  35. private String requestId;
  36. private Date officeDate;
  37. @Transient
  38. public String getOfficeStartDateStr() {
  39. return officeStartDateStr;
  40. }
  41. public void setOfficeStartDateStr(String officeStartDateStr) {
  42. this.officeStartDateStr = officeStartDateStr;
  43. }
  44. @Transient
  45. public String getOfficeEndDateStr() {
  46. return officeEndDateStr;
  47. }
  48. public void setOfficeEndDateStr(String officeEndDateStr) {
  49. this.officeEndDateStr = officeEndDateStr;
  50. }
  51. @Column(name = "office_date", nullable = true, length = 255)
  52. public Date getOfficeDate() {
  53. return officeDate;
  54. }
  55. public void setOfficeDate(Date officeDate) {
  56. this.officeDate = officeDate;
  57. }
  58. @Column(name = "request_id", nullable = true, length = 255)
  59. public String getRequestId() {
  60. return requestId;
  61. }
  62. public void setRequestId(String requestId) {
  63. this.requestId = requestId;
  64. }
  65. @Id
  66. @GeneratedValue(generator = "paymentableGenerator")
  67. @GenericGenerator(name = "paymentableGenerator", strategy = "uuid")
  68. @Column(name = "id", nullable = true, length = 255)
  69. public String getId() {
  70. /* 120 */ return this.id;
  71. }
  72. public void setId(String id) {
  73. /* 124 */ this.id = id;
  74. }
  75. @Column(name = "office_dept", nullable = true, length = 255)
  76. public String getOfficeDept() {
  77. /* 131 */ return this.officeDept;
  78. }
  79. public void setOfficeDept(String officeDept) {
  80. /* 135 */ this.officeDept = officeDept;
  81. }
  82. @Column(name = "office_dept_id", nullable = true, length = 255)
  83. public String getOfficeDeptId() {
  84. /* 142 */ return this.officeDeptId;
  85. }
  86. public void setOfficeDeptId(String officeDeptId) {
  87. /* 146 */ this.officeDeptId = officeDeptId;
  88. }
  89. @Column(name = "office_travel_user", nullable = true, length = 255)
  90. public String getOfficeTravelUser() {
  91. /* 153 */ return this.officeTravelUser;
  92. }
  93. public void setOfficeTravelUser(String officeTravelUser) {
  94. /* 157 */ this.officeTravelUser = officeTravelUser;
  95. }
  96. @Column(name = "office_drive_user", nullable = true, length = 255)
  97. public String getOfficeDriveUser() {
  98. /* 164 */ return this.officeDriveUser;
  99. }
  100. public void setOfficeDriveUser(String officeDriveUser) {
  101. /* 168 */ this.officeDriveUser = officeDriveUser;
  102. }
  103. @Column(name = "office_address", nullable = true, length = 255)
  104. public String getOfficeAddress() {
  105. /* 175 */ return this.officeAddress;
  106. }
  107. public void setOfficeAddress(String officeAddress) {
  108. /* 179 */ this.officeAddress = officeAddress;
  109. }
  110. @Column(name = "office_start_date", nullable = true, length = 255)
  111. public Date getOfficeStartDate() {
  112. /* 186 */ return this.officeStartDate;
  113. }
  114. public void setOfficeStartDate(Date officeStartDate) {
  115. /* 190 */ this.officeStartDate = officeStartDate;
  116. }
  117. @Column(name = "office_end_date", nullable = true, length = 255)
  118. public Date getOfficeEndDate() {
  119. /* 197 */ return this.officeEndDate;
  120. }
  121. public void setOfficeEndDate(Date officeEndDate) {
  122. /* 201 */ this.officeEndDate = officeEndDate;
  123. }
  124. @Column(name = "office_day", nullable = true, length = 255)
  125. public String getOfficeDay() {
  126. /* 208 */ return this.officeDay;
  127. }
  128. public void setOfficeDay(String officeDay) {
  129. /* 212 */ this.officeDay = officeDay;
  130. }
  131. @Column(name = "office_cont", nullable = true, length = 255)
  132. public String getOfficeCont() {
  133. /* 219 */ return this.officeCont;
  134. }
  135. public void setOfficeCont(String officeCont) {
  136. /* 223 */ this.officeCont = officeCont;
  137. }
  138. @Column(name = "office_approve", nullable = true, length = 255)
  139. public String getOfficeApprove() {
  140. /* 230 */ return this.officeApprove;
  141. }
  142. public void setOfficeApprove(String officeApprove) {
  143. /* 234 */ this.officeApprove = officeApprove;
  144. }
  145. @Column(name = "office_approve_id", nullable = true, length = 255)
  146. public String getOfficeApproveId() {
  147. /* 241 */ return this.officeApproveId;
  148. }
  149. public void setOfficeApproveId(String officeApproveId) {
  150. /* 245 */ this.officeApproveId = officeApproveId;
  151. }
  152. @Column(name = "office_file_url", nullable = true, length = 255)
  153. public String getOfficeFileUrl() {
  154. /* 252 */ return this.officeFileUrl;
  155. }
  156. public void setOfficeFileUrl(String officeFileUrl) {
  157. /* 256 */ this.officeFileUrl = officeFileUrl;
  158. }
  159. @Column(name = "office_filename", nullable = true, length = 255)
  160. public String getOfficeFilename() {
  161. /* 263 */ return this.officeFilename;
  162. }
  163. public void setOfficeFilename(String officeFilename) {
  164. /* 267 */ this.officeFilename = officeFilename;
  165. }
  166. @Column(name = "office_spare_one", nullable = true, length = 255)
  167. public String getOfficeSpareOne() {
  168. /* 274 */ return this.officeSpareOne;
  169. }
  170. public void setOfficeSpareOne(String officeSpareOne) {
  171. /* 278 */ this.officeSpareOne = officeSpareOne;
  172. }
  173. @Column(name = "office_spare_two", nullable = true, length = 255)
  174. public String getOfficeSpareTwo() {
  175. /* 285 */ return this.officeSpareTwo;
  176. }
  177. public void setOfficeSpareTwo(String officeSpareTwo) {
  178. /* 289 */ this.officeSpareTwo = officeSpareTwo;
  179. }
  180. @Column(name = "create_name", nullable = true, length = 255)
  181. public String getCreateName() {
  182. /* 296 */ return this.createName;
  183. }
  184. public void setCreateName(String createName) {
  185. /* 300 */ this.createName = createName;
  186. }
  187. @Column(name = "create_by", nullable = true, length = 255)
  188. public String getCreateBy() {
  189. return this.createBy;
  190. }
  191. public void setCreateBy(String createBy) {
  192. /* 311 */ this.createBy = createBy;
  193. }
  194. @Column(name = "create_date", nullable = true, length = 255)
  195. public Date getCreateDate() {
  196. /* 318 */ return this.createDate;
  197. }
  198. public void setCreateDate(Date createDate) {
  199. /* 322 */ this.createDate = createDate;
  200. }
  201. @Column(name = "update_name", nullable = true, length = 255)
  202. public String getUpdateName() {
  203. /* 329 */ return this.updateName;
  204. }
  205. public void setUpdateName(String updateName) {
  206. /* 333 */ this.updateName = updateName;
  207. }
  208. @Column(name = "update_by", nullable = true, length = 255)
  209. public String getUpdateBy() {
  210. /* 340 */ return this.updateBy;
  211. }
  212. public void setUpdateBy(String updateBy) {
  213. /* 344 */ this.updateBy = updateBy;
  214. }
  215. @Column(name = "update_date", nullable = true, length = 255)
  216. public Date getUpdateDate() {
  217. /* 351 */ return this.updateDate;
  218. }
  219. public void setUpdateDate(Date updateDate) {
  220. /* 355 */ this.updateDate = updateDate;
  221. }
  222. }