using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CMS.Plugin.HIAWms.Domain.Shared.Enums { /// /// 单据类型 /// public enum OrderTypeEnum { /// /// 生产叫料 /// [Description("自动出库")] PRODUCTCALL = 1, /// /// 人工出库 /// [Description("人工出库")] PERSONOT = 2, /// /// 人工入库 /// [Description("人工入库")] PERSONIN = 4, /// /// 自制件入库 /// [Description("自动入库")] SelfMadeParts = 5, } }