using System; using System.Collections.Generic; using System.Text; using WMS.Web.Core; namespace WMS.Web.Domain.Values { /// /// 同步金蝶状态 /// public enum SyncStatus { /// /// 失败(保存失败 未保存) /// [EnumRemark("失败")] Fail = 0, /// /// 成功 /// [EnumRemark("成功")] Success = 1, /// /// 提交失败 /// [EnumRemark("提交失败")] SubmitFail = 2, /// /// 审核失败 /// [EnumRemark("审核失败")] CheckFail = 3, /// /// 同步中 /// [EnumRemark("同步中")] SyncIng = 4, } }