using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MeterVision.db { public class TStandDetail { public string StandDetailId { get; set; } public string CreateTime { get; set; } public string StandId { get; set; } public string SrcImage { get; set; } public string StandValue { get; set; } public string StationId { get; set; } public string DeviceSn { get; set; } public string SampleTime { get; set; } public int ENumCount { get; set; } public int ELastUnit { get; set; } //------新加的项 public int MeterType { get; set; } public double BrightVal { get; set; } public int FlowRate { get; set; } public string DialRegion { get; set; } public int NumCount { get; set; } public int IndCount { get; set; } public string FeatureRegion { get; set; } public double LastUnit { get; set; } //20250430新增项(数据区域是否在s public int NumInUpper { get; set; } public double LastValue { get; set; } public string LastTime { get; set; } public TStandDetail() { StandDetailId = string.Empty; CreateTime = string.Empty; StandId = string.Empty; SrcImage = string.Empty; StandValue = string.Empty; StationId = string.Empty; DeviceSn = string.Empty; SampleTime = string.Empty; NumCount = 0; LastUnit = 0; //新加的项目 MeterType = -1; BrightVal = 0; FlowRate = 0; DialRegion = string.Empty; NumCount = 0; IndCount = 0; FeatureRegion = string.Empty; LastUnit = 0; NumInUpper = -1; LastTime = string.Empty; } } }