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 static readonly string[] FloorEquip = { "1022", "1024", "1026" }; /// /// 生产叫料区6个缓存架 /// public const string Type = "Pt_6_Production"; } }