123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- 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;
- import javax.persistence.Transient;
- /**
- * (九)督察督办发起表
- *
- * @author user
- *
- */
- @Entity
- @Table(name = "INF_SUPINFO")
- public class SupinfoEntity extends QlygBaseEntity {
- /**
- *
- */
- private static final long serialVersionUID = 603723303315464218L;
- /**
- * 流水号
- */
- private String no;
- /**
- * 督办类型 1:行政权力办件督办 2:行政处罚办件督办 3:投诉督办 4:部门督办 5:行政权力办件告警督办 6:行政处罚办件告警督办 9:其他
- */
- private String superviseType;
- /**
- * 部门内部办件编号
- */
- private String internalNo;
- /**
- * 权力编码
- */
- private String itemId;
- /**
- * 部门编码
- */
- private String orgId;
- /**
- * 序号
- */
- private String sortno;
- /**
- * 督办建议
- */
- private String superviseoption;
- /**
- * 发起督办人员
- */
- private String operatorname;
- /**
- * 发起督办时间
- */
- private Date superdate;
- /**
- * 附件
- */
- private String attachment;
- /**
- * 是否已办结
- *
- * @return
- */
- private String state;
- @Transient
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- @Id
- public String getNo() {
- return no;
- }
- public void setNo(String no) {
- this.no = no;
- }
- public String getSuperviseType() {
- return superviseType;
- }
- public void setSuperviseType(String superviseType) {
- this.superviseType = superviseType;
- }
- public String getInternalNo() {
- return internalNo;
- }
- public void setInternalNo(String internalNo) {
- this.internalNo = internalNo;
- }
- public String getItemId() {
- return itemId;
- }
- public void setItemId(String itemId) {
- this.itemId = itemId;
- }
- public String getOrgId() {
- return orgId;
- }
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- @Lob
- @Basic(fetch = FetchType.LAZY)
- @Column(name = "attachment", columnDefinition = "Clob")
- public String getAttachment() {
- return attachment;
- }
- public void setAttachment(String attachment) {
- this.attachment = attachment;
- }
- public String getSortno() {
- return sortno;
- }
- public void setSortno(String sortno) {
- this.sortno = sortno;
- }
- public String getSuperviseoption() {
- return superviseoption;
- }
- public void setSuperviseoption(String superviseoption) {
- this.superviseoption = superviseoption;
- }
- public String getOperatorname() {
- return operatorname;
- }
- public void setOperatorname(String operatorname) {
- this.operatorname = operatorname;
- }
- public Date getSuperdate() {
- return superdate;
- }
- public void setSuperdate(Date superdate) {
- this.superdate = superdate;
- }
- }
|