using Yw.Model.Hydro; using Yw.Model; namespace Yw.WinFrmUI { /// /// /// public class HydroJunctionPropertyViewModel : HydroParterPropertyViewModel { /// /// /// public HydroJunctionPropertyViewModel() { } /// /// /// public HydroJunctionPropertyViewModel(Yw.Model.HydroJunctionInfo rhs) : base(rhs) { } // // 摘要: // 初始水质 public double Quality { get; set; } // // 摘要: // 2d 位置 public Position2d Position2d { get; set; } // // 摘要: // 3d 位置 public Position3d Position3d { get; set; } // // 摘要: // 流量系数/喷射系数 public double Coefficient { get; set; } // // 摘要: // 标高 public double Elev { get; set; } // // 摘要: // 需水量 public double? Demand { get; set; } // // 摘要: // 需水模式 public string DemandPattern { get; set; } } }