24 lines
586 B
C#
24 lines
586 B
C#
using OpenAuth.App.Request;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.ServiceApp.MiManager.Resquest
|
|
{
|
|
public class MiPuchLoadreq: PageReq
|
|
{
|
|
/// <summary>
|
|
/// 巡查人员
|
|
/// </summary>
|
|
public string username { get; set; }
|
|
/// <summary>
|
|
/// 巡查时间
|
|
/// </summary>
|
|
public DateTime? begintime { get; set; }
|
|
public DateTime? endtime { get; set; }
|
|
public short? status { get; set; }
|
|
}
|
|
}
|