using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 不良品来源 /// public enum RejectSource { /// /// 不合格品热后出库 /// Disqualification = 1, /// /// ECM异常出料 /// ECMExceptionDischarge = 2, /// /// ECM未传加热炉号 /// ECMNoHeatingNumber = 3, /// /// ECM未传加热批次号 /// ECMNoLoadNumber = 4, /// /// 第二次不合格品热后出库 /// TwoDisqualification = 5 } }