lixiaojun
2022-07-27 96887ec041ba8ddb170c75c1492fc210735ecb37
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation
{
    /// <summary>
    /// 管路
    /// </summary>
    public class PipeLine
    {
        public const string LogicArea = "业务区域";
        public const string Station = "泵站";
        public const string EnginePump = "机泵";
        public const string Pipe = "管道";
        public const string Valve = "阀";
        public const string Pool = "水池";
        public const string Link = "连接点";
 
    }
}