| 12345678910111213141516171819202122232425262728293031 |
- package cn.com.lzt.message.data.dto;
- public class MessageStatisSendDto {
- private String title;
- private String sendMonth;
- private Integer count;
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public String getSendMonth() {
- return sendMonth;
- }
- public void setSendMonth(String sendMonth) {
- this.sendMonth = sendMonth;
- }
- public Integer getCount() {
- return count;
- }
- public void setCount(Integer count) {
- this.count = count;
- }
- }
|