package com.huimv.dto; /** * 首页消息通知 * @author 许丹 * */ public class SyXxtzDTO { int id; String title; String context; public SyXxtzDTO(int id, String title, String context) { super(); this.id = id; this.title = title; this.context = context; } public void setId(int id) { this.id = id; } public void setTitle(String title) { this.title = title; } public void setContext(String context) { this.context = context; } public int getId() { return id; } public String getTitle() { return title; } public String getContext() { return context; } }