12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- 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; }
- 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;
- LastTime = string.Empty;
- }
- }
- }
|