Infrastructure/OpenAuth.App/ServiceApp/FmPreventionPlanManage/Request/FmPreventionplanReq.cs

35 lines
987 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 System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.ServiceApp.FmPreventionPlanManage.Request
{
public class FmPreventionplanReq
{
//当前页
public int page { get; set; }
//每页条数
public int limit { get; set; }
//预案名称
public string name { get; set; }
//预案编号
public string code { get; set; }
//预案状态,0草稿1生效2过期
public int? state { get; set; }
//预案类型 0总体应急预案、1专项应急预案、2部门预案
public int? plancategory { get; set; }
//创建时间开始时间
public DateTime? createtimebegin { get; set; }
//创建时间结束时间
public DateTime? createtimeend { get; set; }
public FmPreventionplanReq()
{
page = 1;
limit = 10;
}
}
}