| | |
| | | /// 极限电量 低于此电量不执行任务 |
| | | /// </summary> |
| | | [Description("极限电量")] |
| | | Dl = 30, |
| | | Dl = 20, |
| | | /// <summary> |
| | | /// 健康电量 低于此电量 且无任务时去充电 |
| | | /// </summary> |
| | | [Description("健康电量")] |
| | | Dl2 = 80, |
| | | |
| | | |
| | | Dl2 = 75, |
| | | |
| | | |
| | | } |
| | | |
| | | |
| | | public class carConverModel |
| | | { |
| | | |
| | | public Dictionary<string, string> conveyorNan = new Dictionary<string, string>(); |
| | | public Dictionary<string, string> conveyorBei = new Dictionary<string, string>(); |
| | | public Dictionary<string, string> conveyorRuKu = new Dictionary<string, string>(); |
| | | public carConverModel(){ |
| | | conveyorNan = new Dictionary<string, string>() |
| | | { |
| | | {"190601","13"}, |
| | | {"190602","15"}, |
| | | {"191201","14"}, |
| | | {"191202","16"} |
| | | }; |
| | | conveyorBei = new Dictionary<string, string>() |
| | | { |
| | | {"030401","2"}, |
| | | {"030402","6"}, |
| | | {"030601","3"}, |
| | | {"030602","7"}, |
| | | {"031201","5"}, |
| | | {"031202","8"}, |
| | | }; |
| | | conveyorRuKu = new Dictionary<string, string>() |
| | | { |
| | | {"190601","9"}, |
| | | {"190602","9"}, |
| | | {"191201","9"}, |
| | | {"191202","9"}, |
| | | |
| | | {"030401","17"}, |
| | | {"030402","17"}, |
| | | {"030601","18"}, |
| | | {"030602","18"}, |
| | | {"031201","18"}, |
| | | {"031202","18"}, |
| | | }; |
| | | } |
| | | } |