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