| 
					
				 | 
			
			
				@ -12,180 +12,218 @@ import com.yihu.wlyy.entity.IdEntity; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 * 患者健康教育文章 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 * @author George 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 * 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 * @author George 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				@Entity 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				@Table(name = "wlyy_health_edu_article_patient") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				public class HealthEduArticlePatient extends IdEntity { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					/** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					 *  
			 | 
		
	
		
			
				 | 
				 | 
			
			
					 */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private static final long serialVersionUID = -2828104062535279547L; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					// 患者标识 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private String patient; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					// 文章标识 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private String article; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					// 医生标识 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private String doctor; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					// 医生姓名 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private String doctorName; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					// 文章标题 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private String title; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					// 文章链接 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private String url; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					// 文章内容 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private String content; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					// 是否已读:0已读,1未读 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private Integer read; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					// 发布时间 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private Date czrq; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					// 签约类型 1三师 2家庭 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private Integer signType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					// 行政团队 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private Long adminTeamCode; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					// 简介 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private String summary; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					//附加内容 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private String attachedContent; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					//批次号记录发送所属批次 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private String batchNo; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					//签约表code 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private String signCode; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					private Integer articleId; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public String getBatchNo() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return batchNo; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setBatchNo(String batchNo) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.batchNo = batchNo; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public String getAttachedContent() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return attachedContent; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setAttachedContent(String attachedContent) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.attachedContent = attachedContent; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public String getPatient() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return patient; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setPatient(String patient) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.patient = patient; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public String getArticle() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return article; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setArticle(String article) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.article = article; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public String getDoctor() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return doctor; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setDoctor(String doctor) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.doctor = doctor; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public String getDoctorName() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return doctorName; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setDoctorName(String doctorName) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.doctorName = doctorName; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					@Transient 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public String getTitle() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return title; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setTitle(String title) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.title = title; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					@Transient 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public String getUrl() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return url; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setUrl(String url) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.url = url; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					@Transient 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public String getContent() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return content; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setContent(String content) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.content = content; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					@Column(name = "is_read") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public Integer getRead() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return read; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setRead(Integer read) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.read = read; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public Date getCzrq() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return czrq; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setCzrq(Date czrq) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.czrq = czrq; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public Integer getSignType() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return signType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setSignType(Integer signType) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.signType = signType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public Long getAdminTeamCode() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return adminTeamCode; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setAdminTeamCode(Long adminTeamCode) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.adminTeamCode = adminTeamCode; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					@Transient 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public String getSummary() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return summary; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setSummary(String summary) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.summary = summary; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public String getSignCode() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return signCode; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setSignCode(String signCode) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.signCode = signCode; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					@Transient 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public Integer getArticleId() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						return articleId; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					public void setArticleId(Integer articleId) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
						this.articleId = articleId; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    /** 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     * 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private static final long serialVersionUID = -2828104062535279547L; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    // 患者标识 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String patient; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    // 文章标识 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String article; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    // 医生标识 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String doctor; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    // 医生姓名 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String doctorName; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    // 文章标题 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String title; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    // 文章链接 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String url; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    // 文章内容 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String content; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    // 是否已读:0已读,1未读 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private Integer read; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    // 发布时间 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private Date czrq; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    // 签约类型 1三师 2家庭 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private Integer signType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    // 行政团队 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private Long adminTeamCode; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    // 简介 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String summary; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    //附加内容 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String attachedContent; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    //批次号记录发送所属批次 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String batchNo; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    //文章标题 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String attachedTitle; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    //文章封面 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String attachedPic; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    //推送类型 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private Integer sendType; //1或者为空 i健康后台推送  2PC端推送 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    //签约表code 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String signCode; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private Integer articleId; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public String getBatchNo() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return batchNo; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setBatchNo(String batchNo) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.batchNo = batchNo; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public String getAttachedContent() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return attachedContent; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setAttachedContent(String attachedContent) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.attachedContent = attachedContent; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public String getPatient() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return patient; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setPatient(String patient) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.patient = patient; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public String getArticle() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return article; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setArticle(String article) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.article = article; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public String getDoctor() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return doctor; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setDoctor(String doctor) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.doctor = doctor; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public String getDoctorName() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return doctorName; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setDoctorName(String doctorName) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.doctorName = doctorName; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    @Transient 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public String getTitle() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return title; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setTitle(String title) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.title = title; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    @Transient 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public String getUrl() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return url; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setUrl(String url) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.url = url; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    @Transient 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public String getContent() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return content; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setContent(String content) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.content = content; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    @Column(name = "is_read") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public Integer getRead() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return read; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setRead(Integer read) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.read = read; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public Date getCzrq() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return czrq; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setCzrq(Date czrq) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.czrq = czrq; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public Integer getSignType() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return signType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setSignType(Integer signType) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.signType = signType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public Long getAdminTeamCode() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return adminTeamCode; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setAdminTeamCode(Long adminTeamCode) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.adminTeamCode = adminTeamCode; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    @Transient 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public String getSummary() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return summary; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setSummary(String summary) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.summary = summary; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public String getSignCode() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return signCode; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setSignCode(String signCode) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.signCode = signCode; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    @Transient 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public Integer getArticleId() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return articleId; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setArticleId(Integer articleId) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.articleId = articleId; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public static long getSerialVersionUID() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return serialVersionUID; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public String getAttachedTitle() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return attachedTitle; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setAttachedTitle(String attachedTitle) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.attachedTitle = attachedTitle; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public String getAttachedPic() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return attachedPic; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setAttachedPic(String attachedPic) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.attachedPic = attachedPic; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public Integer getSendType() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return sendType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setSendType(Integer sendType) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.sendType = sendType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				} 
			 |