增加同步时间

This commit is contained in:
18942506660
2023-11-10 15:15:17 +08:00
parent 2546646533
commit 61c052d1f7
15 changed files with 350 additions and 81 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Text;
using WMS.Web.Core;
namespace WMS.Web.Domain.Values
{
/// <summary>
/// erp和ops同步时间管理 单据类型
/// </summary>
public enum ErpOpsSyncType
{
/// <summary>
/// 老Ops
/// </summary>
[EnumRemark("老Ops")]
Ops =1,
/// <summary>
/// 出库单
/// </summary>
[EnumRemark("出库单")]
OutStock =2
}
}