调整同步状态

This commit is contained in:
18942506660
2023-12-01 11:11:16 +08:00
parent 5f6d1d0de0
commit 8c37838402
11 changed files with 155 additions and 57 deletions

View File

@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Text;
using WMS.Web.Core;
namespace WMS.Web.Domain.Values
{
/// <summary>
/// 同步金蝶状态
/// </summary>
public enum SyncStatus
{
/// <summary>
/// 失败
/// </summary>
[EnumRemark("失败")]
Fail =0,
/// <summary>
/// 成功
/// </summary>
[EnumRemark("成功")]
Success =1,
/// <summary>
/// 部分成功(数据保存成功,提交或者审核失败)
/// </summary>
[EnumRemark("部分成功")]
PortionSuccess =2
}
}