TStandDetail.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MeterVision.db
  7. {
  8. public class TStandDetail
  9. {
  10. public string StandDetailId { get; set; }
  11. public string CreateTime { get; set; }
  12. public string StandId { get; set; }
  13. public string SrcImage { get; set; }
  14. public string StandValue { get; set; }
  15. public string StationId { get; set; }
  16. public string DeviceSn { get; set; }
  17. public string SampleTime { get; set; }
  18. public int ENumCount { get; set; }
  19. public int ELastUnit { get; set; }
  20. //------新加的项
  21. public int MeterType { get; set; }
  22. public double BrightVal { get; set; }
  23. public int FlowRate { get; set; }
  24. public string DialRegion { get; set; }
  25. public int NumCount { get; set; }
  26. public int IndCount { get; set; }
  27. public string FeatureRegion { get; set; }
  28. public double LastUnit { get; set; }
  29. public double LastValue { get; set; }
  30. public string LastTime { get; set; }
  31. public TStandDetail()
  32. {
  33. StandDetailId = string.Empty;
  34. CreateTime = string.Empty;
  35. StandId = string.Empty;
  36. SrcImage = string.Empty;
  37. StandValue = string.Empty;
  38. StationId = string.Empty;
  39. DeviceSn = string.Empty;
  40. SampleTime = string.Empty;
  41. NumCount = 0;
  42. LastUnit = 0;
  43. //新加的项目
  44. MeterType = -1;
  45. BrightVal = 0;
  46. FlowRate = 0;
  47. DialRegion = string.Empty;
  48. NumCount = 0;
  49. IndCount = 0;
  50. FeatureRegion = string.Empty;
  51. LastUnit = 0;
  52. LastTime = string.Empty;
  53. }
  54. }
  55. }