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; } } }