using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model { public class TdevDevOpeAccountViewModel : BaseViewModel { public string C_ID { get; set; } public string C_DevStoreCode { get; set; } public string C_Content { get; set; } public string C_DevOpeAccountConfigCode { get; set; } public string C_Remark { get; set; } public Guid C_CreateBy { get; set; } public DateTime D_CreateOn { get; set; } } public class DevOpeAccountConfigSelect { public string code { get; set; } public string name { get; set; } } public class DevOpeAccountConfigTableHeadeModel { public string prop { get; set; } public string label { get; set; } public int Level { get; set; } public List children { get; set; } } public class TdevDevOpeContentViewModel { /// /// 日期 /// [Description("日期")] public DateTime Date { get; set; } /// /// 排污口编号 /// [Description("排污口编号")] public string DrainOutletNumber { get; set; } /// /// 设施名称 /// [Description("设施名称")] public string DevStoreName { get; set; } /// /// 设施型号 /// [Description("设施型号")] public string DevStoreType { get; set; } /// /// 规格参数,参数名称 /// [Description("规格参数,参数名称")] public string SpecificationsParameterName { get; set; } /// /// 规格参数,设计值 /// [Description("规格参数,设计值")] public string SpecificationsDesignValue { get; set; } /// /// 规格参数,单位 /// [Description("规格参数,单位")] public string SpecificationsUnit { get; set; } /// /// 运行状况,开始时间 /// [Description("运行状况,开始时间")] public DateTime RunStartTime { get; set; } /// /// 运行状况,结束时间 /// [Description("运行状况,结束时间")] public DateTime RunEndTime { get; set; } /// /// 运行状况,是否正常 /// [Description(" 运行状况,是否正常")] public bool RunWhetherNormal { get; set; } /// /// 污染物排放情况,烟气量(m³/h) /// [Description("污染物排放情况,烟气量(m³/h)")] public string FlueGasVolume { get; set; } /// /// 污染物排放情况,污染因子 /// [Description("污染物排放情况,污染因子")] public string PollutionFactor { get; set; } /// /// 污染物排放情况,治理效率(%) /// [Description("污染物排放情况,治理效率(%)")] public string GovernanceEfficiency { get; set; } /// /// 污染物排放情况,数据来源 /// [Description("污染物排放情况,数据来源")] public string DataSources { get; set; } /// /// 烟气筒高度(m) /// [Description("烟气筒高度(m)")] public string HeightOfFlue { get; set; } /// /// 排放温度(℃) /// [Description("排放温度(℃)")] public string DischargeTemperature { get; set; } /// /// 压力(kpa) /// [Description(" 压力(kpa)")] public string Pressure { get; set; } /// /// 排放时间(h) /// [Description("排放时间(h)")] public string DischargeTime { get; set; } /// /// 耗电量(kw/h) /// [Description("耗电量(kw/h)")] public string ConsumablePowerConsumption { get; set; } /// /// 耗材情况,名称 /// [Description("耗材情况,名称")] public string ConsumableName { get; set; } /// /// 耗材情况,更换量(kg) /// [Description("耗材情况,更换量(kg)")] public string ConsumableReplacementQuantity { get; set; } /// /// 废弃物,名称 /// [Description("废弃物,名称")] public string WasteName { get; set; } /// /// 废弃物,产生量(kg) /// [Description(" 废弃物,产生量(kg)")] public string WasteProduction { get; set; } //public string C_Content { get; set; } //public string C_Remark { get; set; } //public Guid C_CreateBy { get; set; } //public DateTime D_CreateOn { get; set; } } }