TOrderTask.java 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895
  1. package com.goafanti.common.model;
  2. import com.goafanti.common.utils.excel.Excel;
  3. import java.io.Serializable;
  4. import java.math.BigDecimal;
  5. import java.util.Date;
  6. /**
  7. * t_order_task
  8. * @author
  9. */
  10. public class TOrderTask implements Serializable {
  11. /**
  12. * 任务编号
  13. */
  14. private Integer id;
  15. /**
  16. * 订单编号
  17. */
  18. @Excel(name = "订单编号", sort = 2)
  19. private String orderNo;
  20. /**
  21. * 是否为主要任务 0-否,1-是
  22. */
  23. @Excel(name = "是否主项目", sort = 8, readConverterExp = "0=否,1=是")
  24. private Integer main;
  25. /**
  26. * 父任务id
  27. */
  28. private String superId;
  29. /**
  30. * 商品id
  31. */
  32. private String commodityId;
  33. /**
  34. * 商品名称(冗余)
  35. */
  36. @Excel(name = "项目名称", sort = 10)
  37. private String commodityName;
  38. /**
  39. * 商品数量
  40. */
  41. @Excel(name = "项目数量", sort = 11)
  42. private Integer commodityQuantity;
  43. /**
  44. * 商品型号
  45. */
  46. private String commodityMode;
  47. /**
  48. * 合同商品价格
  49. */
  50. @Excel(name = "服务市价", sort = 11)
  51. private BigDecimal commodityPrice;
  52. /**
  53. * 任务状态 0-未分派 ,1-已分派,2-材料已启动,3-材料已完成
  54. */
  55. private Integer taskStatus;
  56. /**
  57. * 派单时间
  58. */
  59. private Date taskDistributionTime;
  60. /**
  61. * 任务分配人
  62. */
  63. private String taskAllocator;
  64. /**
  65. * 任务受理人
  66. */
  67. private String taskReceiver;
  68. /**
  69. * 任务说明
  70. */
  71. @Excel(name = "项目说明", sort = 14)
  72. private String taskComment;
  73. /**
  74. * 任务启动时间
  75. */
  76. private Date taskStartTime;
  77. /**
  78. * 任务结束时间
  79. */
  80. private Date taskEndTime;
  81. /**
  82. * 附件地址
  83. */
  84. private String attachmentUrl;
  85. /**
  86. * 项目状态 0=未启动,1=进行中,2=暂停(客户通知暂停),3=暂停(业务线通知暂停),4=已提交,5=未推荐,6=已推荐,7=未拟公示,8=已拟公示,28=抽查未备案,9=已备案,10=已下证 ,11=退单(已申报),12=退单(未申报),13=已答辩,14=未立项,15=已立项,16=前补助,17=后补助,18=立项已拨款,19=已完成/下证,20=已驳回,21=第1年进行中,22=第1年服务完成,23=第2年进行中,24=第2年服务完成,25=第3年进行中,26=第3年服务完成,27=所有会员服务全部完成,99=未知
  87. */
  88. private Integer projectStatus;
  89. /**
  90. * 受理日期
  91. */
  92. private Date acceptTime;
  93. /**
  94. * 评审日期
  95. */
  96. private Date reviewTime;
  97. /**
  98. * 公示日期
  99. */
  100. private Date publicityTime;
  101. /**
  102. * 发证日期
  103. */
  104. private Date licenceTime;
  105. /**
  106. * 证书编号
  107. */
  108. @Excel(name = "证书編号", sort = 12)
  109. private String certificateNumber;
  110. /**
  111. * 状态 0未开始 1已开始 2已暂停 3已驳回 4已完成 5未完成退单 6已完成退单
  112. */
  113. private Integer status;
  114. /**
  115. * 满意度表格回收 0否 1是 2其他
  116. */
  117. private Integer formRetrieve;
  118. /**
  119. * 退单 0已完成 1未完成 2其他
  120. */
  121. private Integer taskRefund;
  122. /**
  123. * 退单信息
  124. */
  125. private String refundContent;
  126. /**
  127. * 回收信息
  128. */
  129. private String retrieveContent;
  130. /**
  131. * 申报系统账号
  132. */
  133. private String declareUser;
  134. /**
  135. * 申报系统密码
  136. */
  137. private String declarePwd;
  138. /**
  139. * 立项金额
  140. */
  141. private BigDecimal setUpAmount;
  142. /**
  143. * 状态 0未到款 1已到款
  144. */
  145. private Integer arrivalMoney;
  146. /**
  147. * 外包公司名称
  148. */
  149. @Excel(name = "外包(内部)公司", sort = 15)
  150. private String outsourceName;
  151. /**
  152. * 单价
  153. */
  154. @Excel(name = "外包(内部)价格", sort = 16)
  155. private BigDecimal outsourcePrice;
  156. /**
  157. * 咨询师id
  158. */
  159. private String consultantId;
  160. /**
  161. * 咨询师管理id
  162. */
  163. private String managerId;
  164. /**
  165. * 外包 0否 1是
  166. */
  167. private Integer outsource;
  168. /**
  169. * 拆分父id
  170. */
  171. private Integer splitSuper;
  172. /**
  173. * 0否 1父拆分 2子拆分
  174. */
  175. private Integer splitStatus;
  176. /**
  177. * 拆分编号
  178. */
  179. private Integer splitId;
  180. /**
  181. * 拆分人
  182. */
  183. private String splitAid;
  184. /**
  185. * 拆分时间
  186. */
  187. private Date splitTime;
  188. /**
  189. * 项目品类名称(冗余)
  190. */
  191. private String cname;
  192. /**
  193. * 项目受理人(冗余)
  194. */
  195. private String receiverName;
  196. /**
  197. * 申报批次
  198. */
  199. private Integer declarationBatch;
  200. /**
  201. * 费减 0否 1有
  202. */
  203. private Integer costReduction;
  204. /**
  205. * 官费 0否 1有
  206. */
  207. private Integer officialCost;
  208. /**
  209. * 是否立项
  210. */
  211. private Integer setUpStatus;
  212. /**
  213. * 立项时间
  214. */
  215. private Date setUpTime;
  216. /**
  217. * 是否抽查 0否 1未通过 2通过
  218. */
  219. private Integer spotCheckStatus;
  220. /**
  221. * 是否高新
  222. */
  223. private Integer highTechStatus;
  224. /**
  225. * 特别说明
  226. */
  227. private String specialComment;
  228. /**
  229. * 是否包含认证费 0=否,1=是
  230. */
  231. private Integer ifCertificationFee;
  232. /**
  233. * 认证费
  234. */
  235. private BigDecimal certificationFee;
  236. /**
  237. * 认证公司
  238. */
  239. private String certificationCorporate;
  240. /**
  241. * 时间记录
  242. */
  243. private String timeRecord;
  244. /**
  245. * 是否公示 0=否,1=是
  246. */
  247. private Integer ifPublicity;
  248. /**
  249. * 核对状态 0未发起 1核对中 2核对完成
  250. */
  251. private Integer checkStatus;
  252. /**
  253. * 专利分类 0申请 1变更 2复审 3优先权 4恢复请求权 5无效宣告请求费 6强制许可请求费 7 强制许可使用裁决请求费 8登录、印刷费、印花税
  254. */
  255. private Integer patentType;
  256. /**
  257. * 公示网络连接
  258. */
  259. private String pubicityUrl;
  260. private static final long serialVersionUID = 1L;
  261. public Integer getId() {
  262. return id;
  263. }
  264. public void setId(Integer id) {
  265. this.id = id;
  266. }
  267. public String getOrderNo() {
  268. return orderNo;
  269. }
  270. public void setOrderNo(String orderNo) {
  271. this.orderNo = orderNo;
  272. }
  273. public Integer getMain() {
  274. return main;
  275. }
  276. public void setMain(Integer main) {
  277. this.main = main;
  278. }
  279. public String getSuperId() {
  280. return superId;
  281. }
  282. public void setSuperId(String superId) {
  283. this.superId = superId;
  284. }
  285. public String getCommodityId() {
  286. return commodityId;
  287. }
  288. public void setCommodityId(String commodityId) {
  289. this.commodityId = commodityId;
  290. }
  291. public String getCommodityName() {
  292. return commodityName;
  293. }
  294. public void setCommodityName(String commodityName) {
  295. this.commodityName = commodityName;
  296. }
  297. public Integer getCommodityQuantity() {
  298. return commodityQuantity;
  299. }
  300. public void setCommodityQuantity(Integer commodityQuantity) {
  301. this.commodityQuantity = commodityQuantity;
  302. }
  303. public String getCommodityMode() {
  304. return commodityMode;
  305. }
  306. public void setCommodityMode(String commodityMode) {
  307. this.commodityMode = commodityMode;
  308. }
  309. public BigDecimal getCommodityPrice() {
  310. return commodityPrice;
  311. }
  312. public void setCommodityPrice(BigDecimal commodityPrice) {
  313. this.commodityPrice = commodityPrice;
  314. }
  315. public Integer getTaskStatus() {
  316. return taskStatus;
  317. }
  318. public void setTaskStatus(Integer taskStatus) {
  319. this.taskStatus = taskStatus;
  320. }
  321. public Date getTaskDistributionTime() {
  322. return taskDistributionTime;
  323. }
  324. public void setTaskDistributionTime(Date taskDistributionTime) {
  325. this.taskDistributionTime = taskDistributionTime;
  326. }
  327. public String getTaskAllocator() {
  328. return taskAllocator;
  329. }
  330. public void setTaskAllocator(String taskAllocator) {
  331. this.taskAllocator = taskAllocator;
  332. }
  333. public String getTaskReceiver() {
  334. return taskReceiver;
  335. }
  336. public void setTaskReceiver(String taskReceiver) {
  337. this.taskReceiver = taskReceiver;
  338. }
  339. public String getTaskComment() {
  340. return taskComment;
  341. }
  342. public void setTaskComment(String taskComment) {
  343. this.taskComment = taskComment;
  344. }
  345. public Date getTaskStartTime() {
  346. return taskStartTime;
  347. }
  348. public void setTaskStartTime(Date taskStartTime) {
  349. this.taskStartTime = taskStartTime;
  350. }
  351. public Date getTaskEndTime() {
  352. return taskEndTime;
  353. }
  354. public void setTaskEndTime(Date taskEndTime) {
  355. this.taskEndTime = taskEndTime;
  356. }
  357. public String getAttachmentUrl() {
  358. return attachmentUrl;
  359. }
  360. public void setAttachmentUrl(String attachmentUrl) {
  361. this.attachmentUrl = attachmentUrl;
  362. }
  363. public Integer getProjectStatus() {
  364. return projectStatus;
  365. }
  366. public void setProjectStatus(Integer projectStatus) {
  367. this.projectStatus = projectStatus;
  368. }
  369. public Date getAcceptTime() {
  370. return acceptTime;
  371. }
  372. public void setAcceptTime(Date acceptTime) {
  373. this.acceptTime = acceptTime;
  374. }
  375. public Date getReviewTime() {
  376. return reviewTime;
  377. }
  378. public void setReviewTime(Date reviewTime) {
  379. this.reviewTime = reviewTime;
  380. }
  381. public Date getPublicityTime() {
  382. return publicityTime;
  383. }
  384. public void setPublicityTime(Date publicityTime) {
  385. this.publicityTime = publicityTime;
  386. }
  387. public Date getLicenceTime() {
  388. return licenceTime;
  389. }
  390. public void setLicenceTime(Date licenceTime) {
  391. this.licenceTime = licenceTime;
  392. }
  393. public String getCertificateNumber() {
  394. return certificateNumber;
  395. }
  396. public void setCertificateNumber(String certificateNumber) {
  397. this.certificateNumber = certificateNumber;
  398. }
  399. public Integer getStatus() {
  400. return status;
  401. }
  402. public void setStatus(Integer status) {
  403. this.status = status;
  404. }
  405. public Integer getFormRetrieve() {
  406. return formRetrieve;
  407. }
  408. public void setFormRetrieve(Integer formRetrieve) {
  409. this.formRetrieve = formRetrieve;
  410. }
  411. public Integer getTaskRefund() {
  412. return taskRefund;
  413. }
  414. public void setTaskRefund(Integer taskRefund) {
  415. this.taskRefund = taskRefund;
  416. }
  417. public String getRefundContent() {
  418. return refundContent;
  419. }
  420. public void setRefundContent(String refundContent) {
  421. this.refundContent = refundContent;
  422. }
  423. public String getRetrieveContent() {
  424. return retrieveContent;
  425. }
  426. public void setRetrieveContent(String retrieveContent) {
  427. this.retrieveContent = retrieveContent;
  428. }
  429. public String getDeclareUser() {
  430. return declareUser;
  431. }
  432. public void setDeclareUser(String declareUser) {
  433. this.declareUser = declareUser;
  434. }
  435. public String getDeclarePwd() {
  436. return declarePwd;
  437. }
  438. public void setDeclarePwd(String declarePwd) {
  439. this.declarePwd = declarePwd;
  440. }
  441. public BigDecimal getSetUpAmount() {
  442. return setUpAmount;
  443. }
  444. public void setSetUpAmount(BigDecimal setUpAmount) {
  445. this.setUpAmount = setUpAmount;
  446. }
  447. public Integer getArrivalMoney() {
  448. return arrivalMoney;
  449. }
  450. public void setArrivalMoney(Integer arrivalMoney) {
  451. this.arrivalMoney = arrivalMoney;
  452. }
  453. public String getOutsourceName() {
  454. return outsourceName;
  455. }
  456. public void setOutsourceName(String outsourceName) {
  457. this.outsourceName = outsourceName;
  458. }
  459. public BigDecimal getOutsourcePrice() {
  460. return outsourcePrice;
  461. }
  462. public void setOutsourcePrice(BigDecimal outsourcePrice) {
  463. this.outsourcePrice = outsourcePrice;
  464. }
  465. public String getConsultantId() {
  466. return consultantId;
  467. }
  468. public void setConsultantId(String consultantId) {
  469. this.consultantId = consultantId;
  470. }
  471. public String getManagerId() {
  472. return managerId;
  473. }
  474. public void setManagerId(String managerId) {
  475. this.managerId = managerId;
  476. }
  477. public Integer getOutsource() {
  478. return outsource;
  479. }
  480. public void setOutsource(Integer outsource) {
  481. this.outsource = outsource;
  482. }
  483. public Integer getSplitSuper() {
  484. return splitSuper;
  485. }
  486. public void setSplitSuper(Integer splitSuper) {
  487. this.splitSuper = splitSuper;
  488. }
  489. public Integer getSplitStatus() {
  490. return splitStatus;
  491. }
  492. public void setSplitStatus(Integer splitStatus) {
  493. this.splitStatus = splitStatus;
  494. }
  495. public Integer getSplitId() {
  496. return splitId;
  497. }
  498. public void setSplitId(Integer splitId) {
  499. this.splitId = splitId;
  500. }
  501. public String getSplitAid() {
  502. return splitAid;
  503. }
  504. public void setSplitAid(String splitAid) {
  505. this.splitAid = splitAid;
  506. }
  507. public Date getSplitTime() {
  508. return splitTime;
  509. }
  510. public void setSplitTime(Date splitTime) {
  511. this.splitTime = splitTime;
  512. }
  513. public String getCname() {
  514. return cname;
  515. }
  516. public void setCname(String cname) {
  517. this.cname = cname;
  518. }
  519. public String getReceiverName() {
  520. return receiverName;
  521. }
  522. public void setReceiverName(String receiverName) {
  523. this.receiverName = receiverName;
  524. }
  525. public Integer getDeclarationBatch() {
  526. return declarationBatch;
  527. }
  528. public void setDeclarationBatch(Integer declarationBatch) {
  529. this.declarationBatch = declarationBatch;
  530. }
  531. public Integer getCostReduction() {
  532. return costReduction;
  533. }
  534. public void setCostReduction(Integer costReduction) {
  535. this.costReduction = costReduction;
  536. }
  537. public Integer getOfficialCost() {
  538. return officialCost;
  539. }
  540. public void setOfficialCost(Integer officialCost) {
  541. this.officialCost = officialCost;
  542. }
  543. public Integer getSetUpStatus() {
  544. return setUpStatus;
  545. }
  546. public void setSetUpStatus(Integer setUpStatus) {
  547. this.setUpStatus = setUpStatus;
  548. }
  549. public Date getSetUpTime() {
  550. return setUpTime;
  551. }
  552. public void setSetUpTime(Date setUpTime) {
  553. this.setUpTime = setUpTime;
  554. }
  555. public Integer getSpotCheckStatus() {
  556. return spotCheckStatus;
  557. }
  558. public void setSpotCheckStatus(Integer spotCheckStatus) {
  559. this.spotCheckStatus = spotCheckStatus;
  560. }
  561. public Integer getHighTechStatus() {
  562. return highTechStatus;
  563. }
  564. public void setHighTechStatus(Integer highTechStatus) {
  565. this.highTechStatus = highTechStatus;
  566. }
  567. public String getSpecialComment() {
  568. return specialComment;
  569. }
  570. public void setSpecialComment(String specialComment) {
  571. this.specialComment = specialComment;
  572. }
  573. public Integer getIfCertificationFee() {
  574. return ifCertificationFee;
  575. }
  576. public void setIfCertificationFee(Integer ifCertificationFee) {
  577. this.ifCertificationFee = ifCertificationFee;
  578. }
  579. public BigDecimal getCertificationFee() {
  580. return certificationFee;
  581. }
  582. public void setCertificationFee(BigDecimal certificationFee) {
  583. this.certificationFee = certificationFee;
  584. }
  585. public String getCertificationCorporate() {
  586. return certificationCorporate;
  587. }
  588. public void setCertificationCorporate(String certificationCorporate) {
  589. this.certificationCorporate = certificationCorporate;
  590. }
  591. public String getTimeRecord() {
  592. return timeRecord;
  593. }
  594. public void setTimeRecord(String timeRecord) {
  595. this.timeRecord = timeRecord;
  596. }
  597. public Integer getIfPublicity() {
  598. return ifPublicity;
  599. }
  600. public void setIfPublicity(Integer ifPublicity) {
  601. this.ifPublicity = ifPublicity;
  602. }
  603. public Integer getCheckStatus() {
  604. return checkStatus;
  605. }
  606. public void setCheckStatus(Integer checkStatus) {
  607. this.checkStatus = checkStatus;
  608. }
  609. public Integer getPatentType() {
  610. return patentType;
  611. }
  612. public void setPatentType(Integer patentType) {
  613. this.patentType = patentType;
  614. }
  615. public String getPubicityUrl() {
  616. return pubicityUrl;
  617. }
  618. public void setPubicityUrl(String pubicityUrl) {
  619. this.pubicityUrl = pubicityUrl;
  620. }
  621. @Override
  622. public String toString() {
  623. StringBuilder sb = new StringBuilder();
  624. sb.append(getClass().getSimpleName());
  625. sb.append(" [");
  626. sb.append("Hash = ").append(hashCode());
  627. sb.append(", id=").append(id);
  628. sb.append(", orderNo=").append(orderNo);
  629. sb.append(", main=").append(main);
  630. sb.append(", superId=").append(superId);
  631. sb.append(", commodityId=").append(commodityId);
  632. sb.append(", commodityName=").append(commodityName);
  633. sb.append(", commodityQuantity=").append(commodityQuantity);
  634. sb.append(", commodityMode=").append(commodityMode);
  635. sb.append(", commodityPrice=").append(commodityPrice);
  636. sb.append(", taskStatus=").append(taskStatus);
  637. sb.append(", taskDistributionTime=").append(taskDistributionTime);
  638. sb.append(", taskAllocator=").append(taskAllocator);
  639. sb.append(", taskReceiver=").append(taskReceiver);
  640. sb.append(", taskComment=").append(taskComment);
  641. sb.append(", taskStartTime=").append(taskStartTime);
  642. sb.append(", taskEndTime=").append(taskEndTime);
  643. sb.append(", attachmentUrl=").append(attachmentUrl);
  644. sb.append(", projectStatus=").append(projectStatus);
  645. sb.append(", acceptTime=").append(acceptTime);
  646. sb.append(", reviewTime=").append(reviewTime);
  647. sb.append(", publicityTime=").append(publicityTime);
  648. sb.append(", licenceTime=").append(licenceTime);
  649. sb.append(", certificateNumber=").append(certificateNumber);
  650. sb.append(", status=").append(status);
  651. sb.append(", formRetrieve=").append(formRetrieve);
  652. sb.append(", taskRefund=").append(taskRefund);
  653. sb.append(", refundContent=").append(refundContent);
  654. sb.append(", retrieveContent=").append(retrieveContent);
  655. sb.append(", declareUser=").append(declareUser);
  656. sb.append(", declarePwd=").append(declarePwd);
  657. sb.append(", setUpAmount=").append(setUpAmount);
  658. sb.append(", arrivalMoney=").append(arrivalMoney);
  659. sb.append(", outsourceName=").append(outsourceName);
  660. sb.append(", outsourcePrice=").append(outsourcePrice);
  661. sb.append(", consultantId=").append(consultantId);
  662. sb.append(", managerId=").append(managerId);
  663. sb.append(", outsource=").append(outsource);
  664. sb.append(", splitSuper=").append(splitSuper);
  665. sb.append(", splitStatus=").append(splitStatus);
  666. sb.append(", splitId=").append(splitId);
  667. sb.append(", splitAid=").append(splitAid);
  668. sb.append(", splitTime=").append(splitTime);
  669. sb.append(", cname=").append(cname);
  670. sb.append(", receiverName=").append(receiverName);
  671. sb.append(", declarationBatch=").append(declarationBatch);
  672. sb.append(", costReduction=").append(costReduction);
  673. sb.append(", officialCost=").append(officialCost);
  674. sb.append(", setUpStatus=").append(setUpStatus);
  675. sb.append(", setUpTime=").append(setUpTime);
  676. sb.append(", spotCheckStatus=").append(spotCheckStatus);
  677. sb.append(", highTechStatus=").append(highTechStatus);
  678. sb.append(", specialComment=").append(specialComment);
  679. sb.append(", ifCertificationFee=").append(ifCertificationFee);
  680. sb.append(", certificationFee=").append(certificationFee);
  681. sb.append(", certificationCorporate=").append(certificationCorporate);
  682. sb.append(", timeRecord=").append(timeRecord);
  683. sb.append(", ifPublicity=").append(ifPublicity);
  684. sb.append(", checkStatus=").append(checkStatus);
  685. sb.append(", patentType=").append(patentType);
  686. sb.append(", pubicityUrl=").append(pubicityUrl);
  687. sb.append(", serialVersionUID=").append(serialVersionUID);
  688. sb.append("]");
  689. return sb.toString();
  690. }
  691. private String name;
  692. private String email;
  693. public String getName() {
  694. return name;
  695. }
  696. public void setName(String name) {
  697. this.name = name;
  698. }
  699. public String getEmail() {
  700. return email;
  701. }
  702. public void setEmail(String email) {
  703. this.email = email;
  704. }
  705. }