using System.ComponentModel; namespace Admin.NET.Core { /// /// 叫料单状态 /// public enum LesTakeMaterialsStatus { /// /// 未开始 /// [Description("未开始")] WEIKAISHI = 0, /// /// 运送中 /// [Description("运送中")] YUNSONGZHONG = 1, /// /// 完成 /// [Description("完成")] WANCHENG = 2 } }