package cn.flightfeather.supervision.domain.entity;
|
|
import java.util.Date;
|
import javax.persistence.*;
|
|
@Table(name = "ec_t_notice")
|
public class Notice {
|
@Id
|
@Column(name = "EC_GUID")
|
private String ecGuid;
|
|
@Column(name = "EC_NoticeType")
|
private Integer ecNoticetype;
|
|
@Column(name = "EC_NoticeTypeName")
|
private String ecNoticetypename;
|
|
@Column(name = "EC_NoticeSubType")
|
private Integer ecNoticesubtype;
|
|
@Column(name = "EC_NoticeSubTypeName")
|
private String ecNoticesubtypename;
|
|
@Column(name = "EC_NoticeTitle")
|
private String ecNoticetitle;
|
|
@Column(name = "EC_NoticeFreq")
|
private Integer ecNoticefreq;
|
|
@Column(name = "EC_IsInUse")
|
private Boolean ecIsinuse;
|
|
@Column(name = "EC_IsPE")
|
private Boolean ecIspe;
|
|
@Column(name = "EC_NoticeDtStart")
|
private Date ecNoticedtstart;
|
|
@Column(name = "EC_NoticeDtEnd")
|
private Date ecNoticedtend;
|
|
@Column(name = "EC_CreateDate")
|
private Date ecCreatedate;
|
|
@Column(name = "EC_CreatorId")
|
private String ecCreatorid;
|
|
@Column(name = "EC_Creator")
|
private String ecCreator;
|
|
@Column(name = "EC_UpdateDate")
|
private Date ecUpdatedate;
|
|
@Column(name = "EC_ModifierId")
|
private String ecModifierid;
|
|
@Column(name = "EC_Modifier")
|
private String ecModifier;
|
|
/**
|
* 签收用户类型(1 飞羽;2 环保局; 3 企业等,用“;”分隔)
|
*/
|
@Column(name = "EC_ReceiverType")
|
private String ecReceivertype;
|
|
@Column(name = "EC_NeedSign")
|
private Boolean ecNeedsign;
|
|
@Column(name = "EC_Extension1")
|
private String ecExtension1;
|
|
@Column(name = "EC_Extension2")
|
private String ecExtension2;
|
|
@Column(name = "EC_Extension3")
|
private String ecExtension3;
|
|
@Column(name = "EC_Remark")
|
private String ecRemark;
|
|
@Column(name = "EC_NoticeContent")
|
private String ecNoticecontent;
|
|
/**
|
* 签收用户ID(以“;”分隔)
|
*/
|
@Column(name = "EC_ReceiverId")
|
private String ecReceiverid;
|
|
@Column(name = "EC_PicUrl")
|
private String ecPicurl;
|
|
@Column(name = "EC_BodyUrl")
|
private String ecBodyurl;
|
|
/**
|
* @return EC_GUID
|
*/
|
public String getEcGuid() {
|
return ecGuid;
|
}
|
|
/**
|
* @param ecGuid
|
*/
|
public void setEcGuid(String ecGuid) {
|
this.ecGuid = ecGuid == null ? null : ecGuid.trim();
|
}
|
|
/**
|
* @return EC_NoticeType
|
*/
|
public Integer getEcNoticetype() {
|
return ecNoticetype;
|
}
|
|
/**
|
* @param ecNoticetype
|
*/
|
public void setEcNoticetype(Integer ecNoticetype) {
|
this.ecNoticetype = ecNoticetype;
|
}
|
|
/**
|
* @return EC_NoticeTypeName
|
*/
|
public String getEcNoticetypename() {
|
return ecNoticetypename;
|
}
|
|
/**
|
* @param ecNoticetypename
|
*/
|
public void setEcNoticetypename(String ecNoticetypename) {
|
this.ecNoticetypename = ecNoticetypename == null ? null : ecNoticetypename.trim();
|
}
|
|
/**
|
* @return EC_NoticeSubType
|
*/
|
public Integer getEcNoticesubtype() {
|
return ecNoticesubtype;
|
}
|
|
/**
|
* @param ecNoticesubtype
|
*/
|
public void setEcNoticesubtype(Integer ecNoticesubtype) {
|
this.ecNoticesubtype = ecNoticesubtype;
|
}
|
|
/**
|
* @return EC_NoticeSubTypeName
|
*/
|
public String getEcNoticesubtypename() {
|
return ecNoticesubtypename;
|
}
|
|
/**
|
* @param ecNoticesubtypename
|
*/
|
public void setEcNoticesubtypename(String ecNoticesubtypename) {
|
this.ecNoticesubtypename = ecNoticesubtypename == null ? null : ecNoticesubtypename.trim();
|
}
|
|
/**
|
* @return EC_NoticeTitle
|
*/
|
public String getEcNoticetitle() {
|
return ecNoticetitle;
|
}
|
|
/**
|
* @param ecNoticetitle
|
*/
|
public void setEcNoticetitle(String ecNoticetitle) {
|
this.ecNoticetitle = ecNoticetitle == null ? null : ecNoticetitle.trim();
|
}
|
|
/**
|
* @return EC_NoticeFreq
|
*/
|
public Integer getEcNoticefreq() {
|
return ecNoticefreq;
|
}
|
|
/**
|
* @param ecNoticefreq
|
*/
|
public void setEcNoticefreq(Integer ecNoticefreq) {
|
this.ecNoticefreq = ecNoticefreq;
|
}
|
|
/**
|
* @return EC_IsInUse
|
*/
|
public Boolean getEcIsinuse() {
|
return ecIsinuse;
|
}
|
|
/**
|
* @param ecIsinuse
|
*/
|
public void setEcIsinuse(Boolean ecIsinuse) {
|
this.ecIsinuse = ecIsinuse;
|
}
|
|
/**
|
* @return EC_IsPE
|
*/
|
public Boolean getEcIspe() {
|
return ecIspe;
|
}
|
|
/**
|
* @param ecIspe
|
*/
|
public void setEcIspe(Boolean ecIspe) {
|
this.ecIspe = ecIspe;
|
}
|
|
/**
|
* @return EC_NoticeDtStart
|
*/
|
public Date getEcNoticedtstart() {
|
return ecNoticedtstart;
|
}
|
|
/**
|
* @param ecNoticedtstart
|
*/
|
public void setEcNoticedtstart(Date ecNoticedtstart) {
|
this.ecNoticedtstart = ecNoticedtstart;
|
}
|
|
/**
|
* @return EC_NoticeDtEnd
|
*/
|
public Date getEcNoticedtend() {
|
return ecNoticedtend;
|
}
|
|
/**
|
* @param ecNoticedtend
|
*/
|
public void setEcNoticedtend(Date ecNoticedtend) {
|
this.ecNoticedtend = ecNoticedtend;
|
}
|
|
/**
|
* @return EC_CreateDate
|
*/
|
public Date getEcCreatedate() {
|
return ecCreatedate;
|
}
|
|
/**
|
* @param ecCreatedate
|
*/
|
public void setEcCreatedate(Date ecCreatedate) {
|
this.ecCreatedate = ecCreatedate;
|
}
|
|
/**
|
* @return EC_CreatorId
|
*/
|
public String getEcCreatorid() {
|
return ecCreatorid;
|
}
|
|
/**
|
* @param ecCreatorid
|
*/
|
public void setEcCreatorid(String ecCreatorid) {
|
this.ecCreatorid = ecCreatorid == null ? null : ecCreatorid.trim();
|
}
|
|
/**
|
* @return EC_Creator
|
*/
|
public String getEcCreator() {
|
return ecCreator;
|
}
|
|
/**
|
* @param ecCreator
|
*/
|
public void setEcCreator(String ecCreator) {
|
this.ecCreator = ecCreator == null ? null : ecCreator.trim();
|
}
|
|
/**
|
* @return EC_UpdateDate
|
*/
|
public Date getEcUpdatedate() {
|
return ecUpdatedate;
|
}
|
|
/**
|
* @param ecUpdatedate
|
*/
|
public void setEcUpdatedate(Date ecUpdatedate) {
|
this.ecUpdatedate = ecUpdatedate;
|
}
|
|
/**
|
* @return EC_ModifierId
|
*/
|
public String getEcModifierid() {
|
return ecModifierid;
|
}
|
|
/**
|
* @param ecModifierid
|
*/
|
public void setEcModifierid(String ecModifierid) {
|
this.ecModifierid = ecModifierid == null ? null : ecModifierid.trim();
|
}
|
|
/**
|
* @return EC_Modifier
|
*/
|
public String getEcModifier() {
|
return ecModifier;
|
}
|
|
/**
|
* @param ecModifier
|
*/
|
public void setEcModifier(String ecModifier) {
|
this.ecModifier = ecModifier == null ? null : ecModifier.trim();
|
}
|
|
/**
|
* 获取签收用户类型(1 飞羽;2 环保局; 3 企业等,用“;”分隔)
|
*
|
* @return EC_ReceiverType - 签收用户类型(1 飞羽;2 环保局; 3 企业等,用“;”分隔)
|
*/
|
public String getEcReceivertype() {
|
return ecReceivertype;
|
}
|
|
/**
|
* 设置签收用户类型(1 飞羽;2 环保局; 3 企业等,用“;”分隔)
|
*
|
* @param ecReceivertype 签收用户类型(1 飞羽;2 环保局; 3 企业等,用“;”分隔)
|
*/
|
public void setEcReceivertype(String ecReceivertype) {
|
this.ecReceivertype = ecReceivertype == null ? null : ecReceivertype.trim();
|
}
|
|
/**
|
* @return EC_NeedSign
|
*/
|
public Boolean getEcNeedsign() {
|
return ecNeedsign;
|
}
|
|
/**
|
* @param ecNeedsign
|
*/
|
public void setEcNeedsign(Boolean ecNeedsign) {
|
this.ecNeedsign = ecNeedsign;
|
}
|
|
/**
|
* @return EC_Extension1
|
*/
|
public String getEcExtension1() {
|
return ecExtension1;
|
}
|
|
/**
|
* @param ecExtension1
|
*/
|
public void setEcExtension1(String ecExtension1) {
|
this.ecExtension1 = ecExtension1 == null ? null : ecExtension1.trim();
|
}
|
|
/**
|
* @return EC_Extension2
|
*/
|
public String getEcExtension2() {
|
return ecExtension2;
|
}
|
|
/**
|
* @param ecExtension2
|
*/
|
public void setEcExtension2(String ecExtension2) {
|
this.ecExtension2 = ecExtension2 == null ? null : ecExtension2.trim();
|
}
|
|
/**
|
* @return EC_Extension3
|
*/
|
public String getEcExtension3() {
|
return ecExtension3;
|
}
|
|
/**
|
* @param ecExtension3
|
*/
|
public void setEcExtension3(String ecExtension3) {
|
this.ecExtension3 = ecExtension3 == null ? null : ecExtension3.trim();
|
}
|
|
/**
|
* @return EC_Remark
|
*/
|
public String getEcRemark() {
|
return ecRemark;
|
}
|
|
/**
|
* @param ecRemark
|
*/
|
public void setEcRemark(String ecRemark) {
|
this.ecRemark = ecRemark == null ? null : ecRemark.trim();
|
}
|
|
/**
|
* @return EC_NoticeContent
|
*/
|
public String getEcNoticecontent() {
|
return ecNoticecontent;
|
}
|
|
/**
|
* @param ecNoticecontent
|
*/
|
public void setEcNoticecontent(String ecNoticecontent) {
|
this.ecNoticecontent = ecNoticecontent == null ? null : ecNoticecontent.trim();
|
}
|
|
/**
|
* 获取签收用户ID(以“;”分隔)
|
*
|
* @return EC_ReceiverId - 签收用户ID(以“;”分隔)
|
*/
|
public String getEcReceiverid() {
|
return ecReceiverid;
|
}
|
|
/**
|
* 设置签收用户ID(以“;”分隔)
|
*
|
* @param ecReceiverid 签收用户ID(以“;”分隔)
|
*/
|
public void setEcReceiverid(String ecReceiverid) {
|
this.ecReceiverid = ecReceiverid == null ? null : ecReceiverid.trim();
|
}
|
|
/**
|
* @return EC_PicUrl
|
*/
|
public String getEcPicurl() {
|
return ecPicurl;
|
}
|
|
/**
|
* @param ecPicurl
|
*/
|
public void setEcPicurl(String ecPicurl) {
|
this.ecPicurl = ecPicurl == null ? null : ecPicurl.trim();
|
}
|
|
/**
|
* @return EC_BodyUrl
|
*/
|
public String getEcBodyurl() {
|
return ecBodyurl;
|
}
|
|
/**
|
* @param ecBodyurl
|
*/
|
public void setEcBodyurl(String ecBodyurl) {
|
this.ecBodyurl = ecBodyurl == null ? null : ecBodyurl.trim();
|
}
|
}
|