tangxu
2022-10-09 055084a369abc0d03a41b495c955d95a64852fb5
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.Application
{
    /// <summary>
    /// 计划分析常量
    /// </summary>
    public class PlanAnaConstant
    {
        /// <summary>
        /// 站点字典
        /// </summary>
        public static Dictionary<int, long> FactoryDict = new Dictionary<int, long>()
        {
            {1,2},//长兴泵站
            {2,12},//五号沟凌桥方向
            {3,9},//五号沟金海方向
            {4,3},//五号沟严桥方向1
            {5,5},//五号沟严桥方向2
            {6,4},//严桥泵站
            {7,6},//临江1#泵站
            {8,7},//临江2#泵站
            {9,8},//徐泾泵站
            {10,10},//金海泵站
            {11,11},//南汇北泵站
            {12,15},//陈行一输
            {13,16},//陈行二输
            {14,17},//泰和泵站
            {15,19},//金泽泵站
            {16,20},//松江泵站
            {17,21},//大桥泵站
        };
 
 
 
 
    }
}