using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 入库缘由 /// public enum IntoWareHouseReason { /// /// 返修料热前入库 /// [Description("返修料热前入库")] Repair = 10, /// /// 热前生产料入库 /// [Description("热前生产料入库")] NormalForRQ = 11, /// /// 热后生产料入库 /// [Description("热后生产料入库")] NormalForRH = 12 } }