SyXxtzDTO.java 601 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.huimv.dto;
  2. /**
  3. * 首页消息通知
  4. * @author 许丹
  5. *
  6. */
  7. public class SyXxtzDTO {
  8. int id;
  9. String title;
  10. String context;
  11. public SyXxtzDTO(int id, String title, String context) {
  12. super();
  13. this.id = id;
  14. this.title = title;
  15. this.context = context;
  16. }
  17. public void setId(int id) {
  18. this.id = id;
  19. }
  20. public void setTitle(String title) {
  21. this.title = title;
  22. }
  23. public void setContext(String context) {
  24. this.context = context;
  25. }
  26. public int getId() {
  27. return id;
  28. }
  29. public String getTitle() {
  30. return title;
  31. }
  32. public String getContext() {
  33. return context;
  34. }
  35. }