using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ewide.Application { public enum DataStatus { /// /// 审核退回 /// [Description("审核退回")] Back = -1, /// /// 初始未处理 /// [Description("初始未处理")] Init = 0, /// /// 暂存 /// [Description("暂存")] TempSaved = 1, /// /// 已保存,待提交 /// [Description("已保存,待提交")] Saved = 2, /// /// 已提交,待审核 /// [Description("已提交,待审核")] Submited = 3, /// /// 审核通过 /// [Description("审核通过")] Passed = 6 } }