using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WCS.Application;
///
/// 四向车出入库口位置枚举
///
[Description("四向车出入库口位置枚举")]
public enum FourWayCarEnum
{
///
/// 密集库1层南左
///
[Description("密集库1层南左")]
A1 = 13,
///
/// 密集库1层南右
///
[Description("密集库1层南右")]
A2 = 13,
///
/// 密集库2层南左
///
[Description("密集库2层南左")]
A3 = 14,
///
/// 密集库2层南右
///
[Description("密集库2层南右")]
A4 = 15,
///
/// 密集库1层北左
///
[Description("密集库1层北左")]
B1,
///
/// 密集库1层北中
///
[Description("密集库1层北中")]
B2,
///
/// 密集库1层北右
///
[Description("密集库1层北右")]
B3,
///
/// 密集库2层北左
///
[Description("密集库2层北左")]
B4,
///
/// 密集库2层北中
///
[Description("密集库2层北中")]
B5,
///
/// 密集库2层北右
///
[Description("密集库2层北右")]
B6,
}
///
/// 四向车电量值枚举
///
[Description("四向车电量值枚举")]
public enum FourWayCarDLEnum
{
///
/// 极限电量 低于此电量不执行任务
///
[Description("极限电量")]
Dl = 10,
///
/// 健康电量 低于此电量 且无任务时去充电
///
[Description("健康电量")]
Dl2 = 15,
}
public class carConverModel
{
public Dictionary conveyorNan = new Dictionary();
public Dictionary conveyorBei = new Dictionary();
public Dictionary conveyorRuKu = new Dictionary();
public carConverModel(){
conveyorNan = new Dictionary()
{
{"190601","13"},
{"190602","15"},
{"191201","14"},
{"191202","16"}
};
conveyorBei = new Dictionary()
{
{"030401","2"},
{"030402","6"},
{"030601","3"},
{"030602","7"},
{"031201","5"},
{"031202","8"},
};
conveyorRuKu = new Dictionary()
{
{"190601","9"},
{"190602","9"},
{"191201","9"},
{"191202","9"},
{"030401","17"},
{"030402","17"},
{"030601","18"},
{"030602","18"},
{"031201","18"},
{"031202","18"},
};
}
}