using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWare.Wms.Core.Enum { /// /// 物料检验 /// public enum MaterialInspection { /// /// 免检 /// [Description("免检")] MIANJIAN = 1, /// /// 抽检 /// [Description("抽检")] CHOUJIAN = 2 } /// /// 物料类别 /// public enum MaterialType { /// /// 原材料 /// [Description("原材料")] YUANCAILIAO = 1, /// /// 半成品 /// [Description("半成品")] BANCHENGPING = 2, /// /// 成品 /// [Description("成品")] CHENGPING = 3, /// /// 空托 /// [Description("空托")] KONGTUO = 4 } /// /// 单位类别 /// public enum UnitType { /// /// 长度 /// [Description("长度")] CHANGDU = 1, /// /// 重量 /// [Description("重量")] ZHONGLIANG = 2 } /// /// 单位编号 /// public enum UnitnoType { /// /// cm /// [Description("cm")] CM = 1, /// /// t /// [Description("T")] T = 2 } }