using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.CalcModel { /// /// 开始状态 /// public class ZyStartInfo { public string OpenPumpStatus { get; set; } // 开泵状态 public double ReservoirWaterLevel { get; set; }//水库水位 } }