using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LeaRun.Application.Entity.PipeNetworkManage { public class MeterEntity { #region 实体成员 /// /// 主键 /// public int MeterAssessmentId { get; set; } /// /// 考核表名称 /// public string MeterAssessmentName { get; set; } /// /// 考核表类型 /// public int MeterTypeId { get; set; } /// /// 厂商编码 /// public string ManufacturerCode { get; set; } /// /// 考核表编号 /// public string MeterAssessmentCode { get; set; } /// /// 该考核表对应的物理数据库表名字 /// public string TableName { get; set; } /// /// 换表时间 /// public DateTime? ChangeMeterTime { get; set; } /// /// 采集时间 /// public DateTime? GetDateTime { get; set; } /// /// 净累计流量 /// public decimal? NetCumulativeFlow { get; set; } /// /// 正累计流量 /// public decimal? PositiveCumulativeFlow { get; set; } /// /// 负累计流量 /// public decimal? NegativeCumulativeFlow { get; set; } /// /// 瞬时流量 /// public decimal? InstantaneousFlow { get; set; } /// /// 瞬时流量上限报警值(参考值) /// public decimal? InstantaneousFlowUpAlarm { get; set; } /// /// 瞬时流量下限报警值(参考值) /// public decimal? InstantaneousFlowDownAlarm { get; set; } /// /// 压力 /// public decimal? Pressure { get; set; } /// /// 压力上限报警值(参考值) /// public decimal? PressureUpAlarm { get; set; } /// /// 压力下限报警值(参考值) /// public decimal? PressureDownAlarm { get; set; } /// /// 电池电压值 /// public decimal? BatteryVoltageValue { get; set; } /// /// 电池电压状态 0正常/1欠压 /// public int? BatteryVoltageState { get; set; } /// /// 箱门报警 0正常/1报警 /// public int? BoxDoorAlarm { get; set; } /// /// 流量计故障 0正常/1故障 /// public int? MeterFault { get; set; } /// /// 换表组标记 /// public decimal MeterTag { get; set; } /// /// 数据更新时间 /// public DateTime UpdateTime { get; set; } /// /// 添加设备者所属公司ID /// public string CompanyId { get; set; } /// /// 经纬度 /// public string LngAndLat { get; set; } /// /// 是否为考核表 /// public int IsKaoHe { get; set; } /// /// 关联表Id /// public string RelevanceMeterId { get; set; } /// /// 漏失率 /// public decimal? LeakRate { get; set; } /// /// 产销差 /// public decimal SupplySaleDValue { get; set; } /// /// 持续用水量-贸易表 /// public decimal? ContinueUserWater { get; set; } /// /// 报警类型 /// public string AlermType { get; set; } #endregion } }