using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// 计划分析常量 /// public class PlanAnaConstant { /// /// 站点字典 /// public static Dictionary FactoryDict = new Dictionary() { {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},//大桥泵站 }; /// /// 时字典 /// //public static Dictionary HourDict = new Dictionary() //{ // { 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"} //}; } }