tangxu
2022-10-08 c4c7b110178d02ad732eddf9a67c4a6ebb150da5
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
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},//大桥泵站
        };
 
 
 
        /// <summary>
        /// 时字典
        /// </summary>
        //public static Dictionary<int,string> HourDict = new Dictionary<int,string>() 
        //{
        //    { 0,"00:00"},
        //    { 1,"01:00"},
        //    { 2,"02:00"},
        //    { 3,"03:00"},
        //    { 4,"04:00"},
        //    { 5,"05:00"},
        //    { 6,"06:00"},
        //    { 7,"07:00"},
        //    { 8,"08:00"},
        //    { 9,"09:00"},
        //    { 10,"10:00"},
        //    { 11,"11:00"},
        //    { 12,"12:00"},
        //    { 13,"13:00"},
        //    { 14,"14:00"},
        //    { 15,"15:00"},
        //    { 16,"16:00"},
        //    { 17,"17:00"},
        //    { 18,"18:00"},
        //    { 19,"19:00"},
        //    { 20,"20:00"},
        //    { 21,"21:00"},
        //    { 22,"22:00"},
        //    { 23,"23:00"}
        //};
 
 
    }
}