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