ningshuxia
2024-03-20 785c92f5078cb7aeb05b13f6da627defb6525b36
IStation.Application.Core/1-dispatch/1-solution/dto/output/StationDispatchOutput.cs
@@ -6,6 +6,27 @@
    public class StationDispatchOutput
    {
        /// <summary>
        ///
        /// </summary>
        public StationDispatchOutput() { }
        /// <summary>
        ///
        /// </summary>
        public StationDispatchOutput(StationDispatchOutput rhs)
        {
            this.Id = rhs.Id;
            this.Index = rhs.Index;
            this.Q = rhs.Q;
            this.H = rhs.H;
            this.E = rhs.E;
            this.P = rhs.P;
            this.WP = rhs.WP;
            this.UWP = rhs.UWP;
            this.Pumps = rhs.Pumps?.ToList();
        }
        /// <summary>
        /// 泵站标识
        /// </summary>
        public string Id { get; set; }