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; } }