| 12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MqttMsgServer.Service.ClientMessage.Dto
- {
- public class MsgQueryParamDto
- {
- public DateTime? StartDate { get; set; }
- public DateTime? EndDate { get; set; }
- /// <summary>
- /// 多个以,逗号隔开
- /// </summary>
- public string ClientId { get; set; }
- /// <summary>
- /// 多个以,逗号隔开
- /// </summary>
- public string Topic { get; set; }
- }
- public class MsgQueryCount: MsgQueryParamDto
- {
- /// <summary>
- /// 1-小时,2-天,3-月,4-年
- /// </summary>
- public string QueryCountType { get; set; }
-
- }
- }
|