using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EnumType { /// /// 任务表的TaskType枚举 [EditBy shaocx,2022-11-09] /// public enum TaskTypeEnum { 入库 = 1, 出库 = 2, 移库 = 3 } }