using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.Info { public enum ECheckStatus { /// /// 新建 /// [Description("新建")] CheckNew = 1, /// /// 盘点中 /// [Description("盘点中")] Checking = 2, /// /// 盘点完成 /// [Description("盘点完成")] Checkfinish = 3, } }