using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 打印类型 /// public enum PrintType { /// /// 热后出库打印流转卡 /// ProcessCardForPostHeatStorageOut = 100, /// /// 人工抽检位送检单 /// InspectOrder = 101, /// /// 后道缓存区打印流转卡 /// ProcessCardForBuffer = 102, /// /// 立库人工出库打印流转卡(热外协料立库出入口) /// ProcessCardForWCSByWhGate1 = 103, /// /// 不良品或者正常下料缓存区方向物料打印送检单 /// InspectOrderForReject = 104, /// /// 立库人工出库打印流转卡(热前出库和热后出库的出库口) /// ProcessCardForWCSByWhGate3 = 105, #region 人工打印流转卡 [Editby shaocx,2019-08-20] /// /// 人工后道缓存区打印流转卡 /// ArtificialProCardForBuffer = 106, /// /// 人工抛丸区打印流转卡 /// ArtificialProCardForPY = 107, /// /// 人工抽样区打印流转卡 /// ArtificialProCardForSampling = 108, /// /// 人工出库区打印流转卡 /// ArtificialProCardForOutStore = 109 #endregion } }