1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LeaRun.Application.Entity.PipeNetworkManage
- {
- /// <summary>
- /// 计算漏损
- /// </summary>
- public class CalcLeakEntity
- {
- public CalcLeakEntity()
- {
- Color = false;
- ContinuousFlow = "--";
- AvgFlow = "--";
- MaxFlow = "--";
- SuspectedLeakFlow = "--";//漏失
- SuspectedLeakRate = "--";
- NightAllowLeakFlow = "--";
- WaterSupply = "--";// waterSupply - SuspectedLeakFlow * 24 *day - SaleWater 表观
- SalesWater = "--";
- MinFlow = "--";
- SysWaterSupply = "--";
- SysSalesWater = "--";
- CalMinFlow = "--";
- LastSysSalesWater = "--";
- LastSysWaterSupply = "--";
- LastStart = "--";
- LastEnd = "--";
- LastIntervalDays = "--";
- }
- public bool Color { get; set; }
- public string ContinuousFlow { get; set; }
- public string AvgFlow { get; set; }
- public string SuspectedLeakFlow { get; set; }
- public string SuspectedLeakRate { get; set; }
- public string NightAllowLeakFlow { get; set; }
- public string WaterSupply { get; set; }
- public string SalesWater { get; set; }
- public string MinFlow { get; set; }
- public string MaxFlow { get; set; }
- public string CalMinFlow { get; set; }
- public string IntervalDays { get; set; }
- public string SysWaterSupply { get; set; }
- public string SysSalesWater { get; set; }
- public string LastSysWaterSupply { get; set; }
- public string LastSysSalesWater { get; set; }
- public string LastStart { get; set; }
- public string LastEnd { get; set; }
- public string LastIntervalDays { get; set; }
- }
- }
|