using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 系统编码结构类 /// public struct SysCode { /// /// MES /// public const string MES = "MES"; /// /// 在制品管理系统 /// public const string WIP="WIP"; /// /// 立库管理系统 /// public const string WCS="WCS"; /// /// AGV调度系统 /// public const string RCS="RCS"; /// /// 背负式AGV调度系统 /// public const string P3SS = "P3SS"; /// /// 质量管理系统 /// public const string LIMS="LIMS"; /// /// 质量预测系统 /// public const string QAMS="QAMS"; /// /// 加热管理系统 /// public const string ECM="ECM"; /// /// 排产系统 /// public const string SCHEDULE="SCHEDULE"; } }