Shuxia Ning
2024-07-17 fd681339c81201ed6fb3303647ecab89e3e6c0c1
IStation.Dto/02-web/02-hydraulic-model/01-epanet/Pipe.cs
@@ -1,5 +1,5 @@
namespace IStation.Dto.Epanet
{
{
    /// <summary>
    /// 管道
    /// </summary>
@@ -7,20 +7,20 @@
    {
        public Pipe()
        {
          //  this.LinkType = LinkType.Pipe;
            //  this.LinkType = LinkType.Pipe;
        }
        public Pipe(Pipe rhs)
        {
            this.Id = rhs.Id;
         //   this.LinkType = rhs.LinkType;
           // this.Diameter = rhs.Diameter;
          //  this.Lenght = rhs.Lenght;
            this.Id = rhs.Id;
            //   this.LinkType = rhs.LinkType;
            // this.Diameter = rhs.Diameter;
            //  this.Lenght = rhs.Lenght;
            this.FirstNode = rhs.FirstNode;
            this.SecondNode = rhs.SecondNode;
            //this.Status = rhs.Status;
         //   this.Vertices = rhs.Vertices?.ToList();
            //   this.Vertices = rhs.Vertices?.ToList();
        }
    }
}