123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- package com.jtgh.qlyg.entity;
- import java.util.Date;
- import javax.persistence.Basic;
- import javax.persistence.Column;
- import javax.persistence.Entity;
- import javax.persistence.FetchType;
- import javax.persistence.Id;
- import javax.persistence.Lob;
- import javax.persistence.Table;
- /**
- * (十)督察督办反馈表
- *
- * @author user
- *
- */
- @Entity
- @Table(name = "INF_SUPBACK")
- public class SupbackQlygEntity extends QlygBaseEntity {
- /**
- *
- */
- private static final long serialVersionUID = 7708478639104829121L;
- /**
- * 流水号
- */
- private String no;
- /**
- * 督办反馈信息
- */
- private String superviseback;
- /**
- * 反馈人员
- */
- private String operatorname;
- /**
- * 反馈人id
- */
- private String monitorId;
- /**
- * 反馈督办时间
- */
- private Date receiptdate;
- private String attachment;
- @Lob
- @Basic(fetch = FetchType.LAZY)
- @Column(name = "attachment", columnDefinition = "Clob")
- public String getAttachment() {
- return attachment;
- }
- public void setAttachment(String attachment) {
- this.attachment = attachment;
- }
- @Id
- public String getNo() {
- return no;
- }
- public void setNo(String no) {
- this.no = no;
- }
- public String getMonitorId() {
- return monitorId;
- }
- public void setMonitorId(String monitorId) {
- this.monitorId = monitorId;
- }
- public String getSuperviseback() {
- return superviseback;
- }
- public void setSuperviseback(String superviseback) {
- this.superviseback = superviseback;
- }
- public String getOperatorname() {
- return operatorname;
- }
- public void setOperatorname(String operatorname) {
- this.operatorname = operatorname;
- }
- public Date getReceiptdate() {
- return receiptdate;
- }
- public void setReceiptdate(Date receiptdate) {
- this.receiptdate = receiptdate;
- }
- }
|