feixian_weifajianguan/OpenAuth.App/ServiceApp/MiManager/Request/MiviolationReq.cs

34 lines
921 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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.Request
{
public class MiviolationReq: PageReq
{
/// <summary>
/// 状态(0待处理1已处理2已开单提车3已审核4已提车)
/// </summary>
public List<short?> status { get; set; }
/// <summary>
/// 盗采点名称
/// </summary>
public string pointname { get; set; }
/// <summary>
/// 违法类型
/// </summary>
public short? viotype { get; set; }
/// <summary>
/// 上报开始时间
/// </summary>
public DateTime? begindate { get; set; }
/// <summary>
/// 上报结束时间
/// </summary>
public DateTime? enddate { get; set; }
}
}