TStandDetail.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. //20250430新增项(数据区域是否在s
  30. public int NumInUpper { get; set; }
  31. public double LastValue { get; set; }
  32. public string LastTime { get; set; }
  33. public TStandDetail()
  34. {
  35. StandDetailId = string.Empty;
  36. CreateTime = string.Empty;
  37. StandId = string.Empty;
  38. SrcImage = string.Empty;
  39. StandValue = string.Empty;
  40. StationId = string.Empty;
  41. DeviceSn = string.Empty;
  42. SampleTime = string.Empty;
  43. NumCount = 0;
  44. LastUnit = 0;
  45. //新加的项目
  46. MeterType = -1;
  47. BrightVal = 0;
  48. FlowRate = 0;
  49. DialRegion = string.Empty;
  50. NumCount = 0;
  51. IndCount = 0;
  52. FeatureRegion = string.Empty;
  53. LastUnit = 0;
  54. NumInUpper = -1;
  55. LastTime = string.Empty;
  56. }
  57. }
  58. }