Shuxia Ning
2024-07-17 fd681339c81201ed6fb3303647ecab89e3e6c0c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
namespace IStation.Model
{
    /// <summary>
    /// 泵站信息
    /// </summary>
    public class Station : System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public Station() { }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="rhs"></param>
        public Station(Station rhs)
        {
            this.Station1 = rhs.Station1?.ToList();
            this.Station2 = rhs.Station2?.ToList();
        }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="rhs"></param>
        public void Reset(Station rhs)
        {
            this.Station1 = rhs.Station1?.ToList();
            this.Station2 = rhs.Station2?.ToList();
        }
 
 
        /// <summary>
        /// 1输水
        /// </summary>
        public List<Pump> Station1 { get; set; }
 
        /// <summary>
        /// 2输水
        /// </summary>
        public List<Pump> Station2 { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        public Station Clone()
        {
            return (Station)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
    }
 
}