SupbackQlygEntity.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. package com.jtgh.qlyg.entity;
  2. import java.util.Date;
  3. import javax.persistence.Basic;
  4. import javax.persistence.Column;
  5. import javax.persistence.Entity;
  6. import javax.persistence.FetchType;
  7. import javax.persistence.Id;
  8. import javax.persistence.Lob;
  9. import javax.persistence.Table;
  10. /**
  11. * (十)督察督办反馈表
  12. *
  13. * @author user
  14. *
  15. */
  16. @Entity
  17. @Table(name = "INF_SUPBACK")
  18. public class SupbackQlygEntity extends QlygBaseEntity {
  19. /**
  20. *
  21. */
  22. private static final long serialVersionUID = 7708478639104829121L;
  23. /**
  24. * 流水号
  25. */
  26. private String no;
  27. /**
  28. * 督办反馈信息
  29. */
  30. private String superviseback;
  31. /**
  32. * 反馈人员
  33. */
  34. private String operatorname;
  35. /**
  36. * 反馈人id
  37. */
  38. private String monitorId;
  39. /**
  40. * 反馈督办时间
  41. */
  42. private Date receiptdate;
  43. private String attachment;
  44. @Lob
  45. @Basic(fetch = FetchType.LAZY)
  46. @Column(name = "attachment", columnDefinition = "Clob")
  47. public String getAttachment() {
  48. return attachment;
  49. }
  50. public void setAttachment(String attachment) {
  51. this.attachment = attachment;
  52. }
  53. @Id
  54. public String getNo() {
  55. return no;
  56. }
  57. public void setNo(String no) {
  58. this.no = no;
  59. }
  60. public String getMonitorId() {
  61. return monitorId;
  62. }
  63. public void setMonitorId(String monitorId) {
  64. this.monitorId = monitorId;
  65. }
  66. public String getSuperviseback() {
  67. return superviseback;
  68. }
  69. public void setSuperviseback(String superviseback) {
  70. this.superviseback = superviseback;
  71. }
  72. public String getOperatorname() {
  73. return operatorname;
  74. }
  75. public void setOperatorname(String operatorname) {
  76. this.operatorname = operatorname;
  77. }
  78. public Date getReceiptdate() {
  79. return receiptdate;
  80. }
  81. public void setReceiptdate(Date receiptdate) {
  82. this.receiptdate = receiptdate;
  83. }
  84. }