using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wcftest.EnumDefine { /// /// 出入库记录的任务名称枚举 /// public enum OutInStockTaskName { /// /// 增加收货任务 【EditBy shaocx,2022-06-14】 /// 收货任务 = 0, 入库任务 = 1, 出库任务 = 2, 清库任务 = 3, /// /// 增加退货任务 【EditBy shaocx,2022-10-14】 /// 退货任务 = 4, /// /// 增加移库任务 【EditBy shaocx,2022-10-20】 /// 移库任务 = 5 } }