CalcLeakEntity.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace LeaRun.Application.Entity.PipeNetworkManage
  7. {
  8. /// <summary>
  9. /// 计算漏损
  10. /// </summary>
  11. public class CalcLeakEntity
  12. {
  13. public CalcLeakEntity()
  14. {
  15. Color = false;
  16. ContinuousFlow = "--";
  17. AvgFlow = "--";
  18. MaxFlow = "--";
  19. SuspectedLeakFlow = "--";//漏失
  20. SuspectedLeakRate = "--";
  21. NightAllowLeakFlow = "--";
  22. WaterSupply = "--";// waterSupply - SuspectedLeakFlow * 24 *day - SaleWater 表观
  23. SalesWater = "--";
  24. MinFlow = "--";
  25. SysWaterSupply = "--";
  26. SysSalesWater = "--";
  27. CalMinFlow = "--";
  28. LastSysSalesWater = "--";
  29. LastSysWaterSupply = "--";
  30. LastStart = "--";
  31. LastEnd = "--";
  32. LastIntervalDays = "--";
  33. }
  34. public bool Color { get; set; }
  35. public string ContinuousFlow { get; set; }
  36. public string AvgFlow { get; set; }
  37. public string SuspectedLeakFlow { get; set; }
  38. public string SuspectedLeakRate { get; set; }
  39. public string NightAllowLeakFlow { get; set; }
  40. public string WaterSupply { get; set; }
  41. public string SalesWater { get; set; }
  42. public string MinFlow { get; set; }
  43. public string MaxFlow { get; set; }
  44. public string CalMinFlow { get; set; }
  45. public string IntervalDays { get; set; }
  46. public string SysWaterSupply { get; set; }
  47. public string SysSalesWater { get; set; }
  48. public string LastSysWaterSupply { get; set; }
  49. public string LastSysSalesWater { get; set; }
  50. public string LastStart { get; set; }
  51. public string LastEnd { get; set; }
  52. public string LastIntervalDays { get; set; }
  53. }
  54. }