MessageStatisSendDto.java 593 B

12345678910111213141516171819202122232425262728293031
  1. package cn.com.lzt.message.data.dto;
  2. public class MessageStatisSendDto {
  3. private String title;
  4. private String sendMonth;
  5. private Integer count;
  6. public String getTitle() {
  7. return title;
  8. }
  9. public void setTitle(String title) {
  10. this.title = title;
  11. }
  12. public String getSendMonth() {
  13. return sendMonth;
  14. }
  15. public void setSendMonth(String sendMonth) {
  16. this.sendMonth = sendMonth;
  17. }
  18. public Integer getCount() {
  19. return count;
  20. }
  21. public void setCount(Integer count) {
  22. this.count = count;
  23. }
  24. }