using System; using System.Collections.Generic; using System.Text; namespace wms.dto { public class Const { /// /// MES基础数据数据同步增量类型-物料 /// public const string MESMaterialInitIncrement = "MESMaterialInitIncrement"; /// /// 任务组名 /// public static readonly string JobGroupName = "DefaultGroup"; /// /// 触发器组名 /// public static readonly string TiggerGroupName = "DefaultGroupTrigger"; /// /// 合金库接驳口类型 /// public const string HJLocPortType = "HJLocPortType"; public const int Zero = 0; public const int One = 1; public const int MinOne = -1; /// /// 合金仓库 /// public const string HjWareHouse = ""; /// /// 盘条仓库 /// public const string PtWareHouse = "pthouse"; /// /// 成品仓库 /// public const string CpWareHouse = "cphouse"; /// /// 二楼出库站台设备号,手动出库使用,用于区分一、二楼任务 /// public static readonly string[] FloorEquip = { "1022", "1024", "1026" }; /// /// 生产叫料区6个缓存架 /// public const string ProductType = "ProductPinKu"; /// /// 盘条库前22个缓存区 /// public const string PinKu_22Type = "22PinKu"; /// /// 成品库请求生成入库任务设备常量 /// public static readonly string[] CpTaskInEquip = { "8277", "8262", "8270", "8120" }; /// /// 成品人工出库口 /// public static readonly string[] SouthOutEquip = { "8278", "8269", "8263", "8257", "8087", "8028", "8094", "8088" }; /// /// 盘条平库 /// public const string PtPinKuhouseType = "Pinku"; /// /// 成品库母托盘类型 /// public const string TrayType = "TPC"; } }