Contract.java 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. package com.goafanti.common.model;
  2. import java.util.Date;
  3. public class Contract {
  4. /**
  5. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.id
  6. * @mbg.generated Wed May 02 19:56:05 CST 2018
  7. */
  8. private String id;
  9. /**
  10. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.serial_number
  11. * @mbg.generated Wed May 02 19:56:05 CST 2018
  12. */
  13. private Integer serialNumber;
  14. /**
  15. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.create_time
  16. * @mbg.generated Wed May 02 19:56:05 CST 2018
  17. */
  18. private Date createTime;
  19. /**
  20. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.update_time
  21. * @mbg.generated Wed May 02 19:56:05 CST 2018
  22. */
  23. private Date updateTime;
  24. /**
  25. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.creater
  26. * @mbg.generated Wed May 02 19:56:05 CST 2018
  27. */
  28. private String creater;
  29. /**
  30. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.name
  31. * @mbg.generated Wed May 02 19:56:05 CST 2018
  32. */
  33. private String name;
  34. /**
  35. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.type
  36. * @mbg.generated Wed May 02 19:56:05 CST 2018
  37. */
  38. private String type;
  39. /**
  40. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.principal
  41. * @mbg.generated Wed May 02 19:56:05 CST 2018
  42. */
  43. private String principal;
  44. /**
  45. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.uid
  46. * @mbg.generated Wed May 02 19:56:05 CST 2018
  47. */
  48. private String uid;
  49. /**
  50. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.sign_date
  51. * @mbg.generated Wed May 02 19:56:05 CST 2018
  52. */
  53. private Date signDate;
  54. /**
  55. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.sign_comment
  56. * @mbg.generated Wed May 02 19:56:05 CST 2018
  57. */
  58. private String signComment;
  59. /**
  60. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.complete_date
  61. * @mbg.generated Wed May 02 19:56:05 CST 2018
  62. */
  63. private Date completeDate;
  64. /**
  65. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.complete_comment
  66. * @mbg.generated Wed May 02 19:56:05 CST 2018
  67. */
  68. private String completeComment;
  69. /**
  70. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.deleted_sign
  71. * @mbg.generated Wed May 02 19:56:05 CST 2018
  72. */
  73. private Integer deletedSign;
  74. /**
  75. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.order_no
  76. * @mbg.generated Wed May 02 19:56:05 CST 2018
  77. */
  78. private String orderNo;
  79. /**
  80. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.status
  81. * @mbg.generated Wed May 02 19:56:05 CST 2018
  82. */
  83. private Integer status;
  84. /**
  85. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.contacts
  86. * @mbg.generated Wed May 02 19:56:05 CST 2018
  87. */
  88. private String contacts;
  89. /**
  90. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.contact_mobile
  91. * @mbg.generated Wed May 02 19:56:05 CST 2018
  92. */
  93. private String contactMobile;
  94. /**
  95. * This field was generated by MyBatis Generator. This field corresponds to the database column contract.task_distribution
  96. * @mbg.generated Wed May 02 19:56:05 CST 2018
  97. */
  98. private Integer taskDistribution;
  99. /**
  100. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.id
  101. * @return the value of contract.id
  102. * @mbg.generated Wed May 02 19:56:05 CST 2018
  103. */
  104. public String getId() {
  105. return id;
  106. }
  107. /**
  108. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.id
  109. * @param id the value for contract.id
  110. * @mbg.generated Wed May 02 19:56:05 CST 2018
  111. */
  112. public void setId(String id) {
  113. this.id = id;
  114. }
  115. /**
  116. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.serial_number
  117. * @return the value of contract.serial_number
  118. * @mbg.generated Wed May 02 19:56:05 CST 2018
  119. */
  120. public Integer getSerialNumber() {
  121. return serialNumber;
  122. }
  123. /**
  124. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.serial_number
  125. * @param serialNumber the value for contract.serial_number
  126. * @mbg.generated Wed May 02 19:56:05 CST 2018
  127. */
  128. public void setSerialNumber(Integer serialNumber) {
  129. this.serialNumber = serialNumber;
  130. }
  131. /**
  132. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.create_time
  133. * @return the value of contract.create_time
  134. * @mbg.generated Wed May 02 19:56:05 CST 2018
  135. */
  136. public Date getCreateTime() {
  137. return createTime;
  138. }
  139. /**
  140. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.create_time
  141. * @param createTime the value for contract.create_time
  142. * @mbg.generated Wed May 02 19:56:05 CST 2018
  143. */
  144. public void setCreateTime(Date createTime) {
  145. this.createTime = createTime;
  146. }
  147. /**
  148. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.update_time
  149. * @return the value of contract.update_time
  150. * @mbg.generated Wed May 02 19:56:05 CST 2018
  151. */
  152. public Date getUpdateTime() {
  153. return updateTime;
  154. }
  155. /**
  156. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.update_time
  157. * @param updateTime the value for contract.update_time
  158. * @mbg.generated Wed May 02 19:56:05 CST 2018
  159. */
  160. public void setUpdateTime(Date updateTime) {
  161. this.updateTime = updateTime;
  162. }
  163. /**
  164. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.creater
  165. * @return the value of contract.creater
  166. * @mbg.generated Wed May 02 19:56:05 CST 2018
  167. */
  168. public String getCreater() {
  169. return creater;
  170. }
  171. /**
  172. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.creater
  173. * @param creater the value for contract.creater
  174. * @mbg.generated Wed May 02 19:56:05 CST 2018
  175. */
  176. public void setCreater(String creater) {
  177. this.creater = creater;
  178. }
  179. /**
  180. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.name
  181. * @return the value of contract.name
  182. * @mbg.generated Wed May 02 19:56:05 CST 2018
  183. */
  184. public String getName() {
  185. return name;
  186. }
  187. /**
  188. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.name
  189. * @param name the value for contract.name
  190. * @mbg.generated Wed May 02 19:56:05 CST 2018
  191. */
  192. public void setName(String name) {
  193. this.name = name;
  194. }
  195. /**
  196. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.type
  197. * @return the value of contract.type
  198. * @mbg.generated Wed May 02 19:56:05 CST 2018
  199. */
  200. public String getType() {
  201. return type;
  202. }
  203. /**
  204. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.type
  205. * @param type the value for contract.type
  206. * @mbg.generated Wed May 02 19:56:05 CST 2018
  207. */
  208. public void setType(String type) {
  209. this.type = type;
  210. }
  211. /**
  212. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.principal
  213. * @return the value of contract.principal
  214. * @mbg.generated Wed May 02 19:56:05 CST 2018
  215. */
  216. public String getPrincipal() {
  217. return principal;
  218. }
  219. /**
  220. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.principal
  221. * @param principal the value for contract.principal
  222. * @mbg.generated Wed May 02 19:56:05 CST 2018
  223. */
  224. public void setPrincipal(String principal) {
  225. this.principal = principal;
  226. }
  227. /**
  228. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.uid
  229. * @return the value of contract.uid
  230. * @mbg.generated Wed May 02 19:56:05 CST 2018
  231. */
  232. public String getUid() {
  233. return uid;
  234. }
  235. /**
  236. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.uid
  237. * @param uid the value for contract.uid
  238. * @mbg.generated Wed May 02 19:56:05 CST 2018
  239. */
  240. public void setUid(String uid) {
  241. this.uid = uid;
  242. }
  243. /**
  244. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.sign_date
  245. * @return the value of contract.sign_date
  246. * @mbg.generated Wed May 02 19:56:05 CST 2018
  247. */
  248. public Date getSignDate() {
  249. return signDate;
  250. }
  251. /**
  252. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.sign_date
  253. * @param signDate the value for contract.sign_date
  254. * @mbg.generated Wed May 02 19:56:05 CST 2018
  255. */
  256. public void setSignDate(Date signDate) {
  257. this.signDate = signDate;
  258. }
  259. /**
  260. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.sign_comment
  261. * @return the value of contract.sign_comment
  262. * @mbg.generated Wed May 02 19:56:05 CST 2018
  263. */
  264. public String getSignComment() {
  265. return signComment;
  266. }
  267. /**
  268. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.sign_comment
  269. * @param signComment the value for contract.sign_comment
  270. * @mbg.generated Wed May 02 19:56:05 CST 2018
  271. */
  272. public void setSignComment(String signComment) {
  273. this.signComment = signComment;
  274. }
  275. /**
  276. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.complete_date
  277. * @return the value of contract.complete_date
  278. * @mbg.generated Wed May 02 19:56:05 CST 2018
  279. */
  280. public Date getCompleteDate() {
  281. return completeDate;
  282. }
  283. /**
  284. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.complete_date
  285. * @param completeDate the value for contract.complete_date
  286. * @mbg.generated Wed May 02 19:56:05 CST 2018
  287. */
  288. public void setCompleteDate(Date completeDate) {
  289. this.completeDate = completeDate;
  290. }
  291. /**
  292. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.complete_comment
  293. * @return the value of contract.complete_comment
  294. * @mbg.generated Wed May 02 19:56:05 CST 2018
  295. */
  296. public String getCompleteComment() {
  297. return completeComment;
  298. }
  299. /**
  300. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.complete_comment
  301. * @param completeComment the value for contract.complete_comment
  302. * @mbg.generated Wed May 02 19:56:05 CST 2018
  303. */
  304. public void setCompleteComment(String completeComment) {
  305. this.completeComment = completeComment;
  306. }
  307. /**
  308. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.deleted_sign
  309. * @return the value of contract.deleted_sign
  310. * @mbg.generated Wed May 02 19:56:05 CST 2018
  311. */
  312. public Integer getDeletedSign() {
  313. return deletedSign;
  314. }
  315. /**
  316. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.deleted_sign
  317. * @param deletedSign the value for contract.deleted_sign
  318. * @mbg.generated Wed May 02 19:56:05 CST 2018
  319. */
  320. public void setDeletedSign(Integer deletedSign) {
  321. this.deletedSign = deletedSign;
  322. }
  323. /**
  324. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.order_no
  325. * @return the value of contract.order_no
  326. * @mbg.generated Wed May 02 19:56:05 CST 2018
  327. */
  328. public String getOrderNo() {
  329. return orderNo;
  330. }
  331. /**
  332. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.order_no
  333. * @param orderNo the value for contract.order_no
  334. * @mbg.generated Wed May 02 19:56:05 CST 2018
  335. */
  336. public void setOrderNo(String orderNo) {
  337. this.orderNo = orderNo;
  338. }
  339. /**
  340. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.status
  341. * @return the value of contract.status
  342. * @mbg.generated Wed May 02 19:56:05 CST 2018
  343. */
  344. public Integer getStatus() {
  345. return status;
  346. }
  347. /**
  348. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.status
  349. * @param status the value for contract.status
  350. * @mbg.generated Wed May 02 19:56:05 CST 2018
  351. */
  352. public void setStatus(Integer status) {
  353. this.status = status;
  354. }
  355. /**
  356. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.contacts
  357. * @return the value of contract.contacts
  358. * @mbg.generated Wed May 02 19:56:05 CST 2018
  359. */
  360. public String getContacts() {
  361. return contacts;
  362. }
  363. /**
  364. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.contacts
  365. * @param contacts the value for contract.contacts
  366. * @mbg.generated Wed May 02 19:56:05 CST 2018
  367. */
  368. public void setContacts(String contacts) {
  369. this.contacts = contacts;
  370. }
  371. /**
  372. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.contact_mobile
  373. * @return the value of contract.contact_mobile
  374. * @mbg.generated Wed May 02 19:56:05 CST 2018
  375. */
  376. public String getContactMobile() {
  377. return contactMobile;
  378. }
  379. /**
  380. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.contact_mobile
  381. * @param contactMobile the value for contract.contact_mobile
  382. * @mbg.generated Wed May 02 19:56:05 CST 2018
  383. */
  384. public void setContactMobile(String contactMobile) {
  385. this.contactMobile = contactMobile;
  386. }
  387. /**
  388. * This method was generated by MyBatis Generator. This method returns the value of the database column contract.task_distribution
  389. * @return the value of contract.task_distribution
  390. * @mbg.generated Wed May 02 19:56:05 CST 2018
  391. */
  392. public Integer getTaskDistribution() {
  393. return taskDistribution;
  394. }
  395. /**
  396. * This method was generated by MyBatis Generator. This method sets the value of the database column contract.task_distribution
  397. * @param taskDistribution the value for contract.task_distribution
  398. * @mbg.generated Wed May 02 19:56:05 CST 2018
  399. */
  400. public void setTaskDistribution(Integer taskDistribution) {
  401. this.taskDistribution = taskDistribution;
  402. }
  403. }