using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.Request { /// /// 查询条件 /// public class QueryDroneCaseinfoReq : PageReq { public void Init() { if (page == 0 || page == null) page = 1; if (limit == 0 || limit == null) limit = 10; } /// /// 标题名称 /// public string msg_title { get; set; } /// /// 创建人 /// public int? is_create { get; set; } /// /// 接收人 /// public int? is_receiver { get; set; } /// /// 通知类型 /// public int? msg_type { get; set; } /// /// 是否已读 /// public int? is_read { get; set; } } }