using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.ServiceApp.FmPreventionPlanManage.Request { public class PrePlanAddReq { public string Id { get; set; } /// /// Desc:预案名称 /// Default: /// Nullable:True /// public string PlanName { get; set; } /// /// Desc:预案编号 /// Default: /// Nullable:True /// public string PlanCode { get; set; } /// /// Desc:预案类别(0总体应急预案、1专项应急预案、2部门预案) /// Default: /// Nullable:True /// public int? PlanCategory { get; set; } /// /// Desc:行政级别(省、市、区县、乡镇) /// Default: /// Nullable:True /// public string AdmLevel { get; set; } /// /// Desc:预案描述 /// Default: /// Nullable:True /// public string Description { get; set; } /// /// Desc:预案内容 /// Default: /// Nullable:True /// public string Content { get; set; } /// /// Desc:预案状态(0草稿,1生效,2过期) /// Default: /// Nullable:True /// public int? Status { get; set; } /// /// Desc:预案版本 /// Default: /// Nullable:True /// public string Version { get; set; } /// /// Desc:编制单位 /// Default: /// Nullable:True /// public string WriteUnit { get; set; } /// /// Desc:编制时间 /// Default: /// Nullable:True /// public DateTime? CreateTime { get; set; } /// /// Desc:创建人 /// Default: /// Nullable:True /// public string CreateUser { get; set; } /// /// Desc:生效日期 /// Default: /// Nullable:True /// public DateTime? EffectiveDate { get; set; } /// /// Desc:失效日期 /// Default: /// Nullable:True /// public DateTime? expiry_date { get; set; } /// /// Desc:具体负责人的姓名 /// Default: /// Nullable:True /// public string ResponsiblePerson { get; set; } /// /// Desc:责任人联系电话 /// Default: /// Nullable:True /// public string Contact { get; set; } /// /// Desc:预案附件 /// Default: /// Nullable:True /// public string Attachment { get; set; } /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remarks { get; set; } /// /// Desc:是否删除 /// Default: /// Nullable:True /// public bool IsDelete { get; set; } public string geom { get; set; } } }