Merge branch 'master' of https://codeup.aliyun.com/62ce7bca487c500c27f70a79/OPS/WMS-Api
This commit is contained in:
30
src/WMS.Web.Domain/Values/ExportStatus.cs
Normal file
30
src/WMS.Web.Domain/Values/ExportStatus.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using WMS.Web.Core;
|
||||
|
||||
namespace WMS.Web.Domain.Values
|
||||
{
|
||||
/// <summary>
|
||||
/// 文件导出状态
|
||||
/// </summary>
|
||||
public enum ExportStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// 正在导出
|
||||
/// </summary>
|
||||
[EnumRemark("正在导出")]
|
||||
Ing = 0,
|
||||
/// <summary>
|
||||
/// 导出成功
|
||||
/// </summary>
|
||||
[EnumRemark("导出成功")]
|
||||
Success = 1,
|
||||
/// <summary>
|
||||
/// 导出失败
|
||||
/// </summary>
|
||||
[EnumRemark("导出失败")]
|
||||
Fail = 2
|
||||
}
|
||||
}
|
||||
19
src/WMS.Web.Domain/Values/FileDownLoadOrderType.cs
Normal file
19
src/WMS.Web.Domain/Values/FileDownLoadOrderType.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using WMS.Web.Core;
|
||||
|
||||
namespace WMS.Web.Domain.Values
|
||||
{
|
||||
/// <summary>
|
||||
/// 导出单据类型
|
||||
/// </summary>
|
||||
public enum FileDownLoadOrderType
|
||||
{
|
||||
/// <summary>
|
||||
/// 出库任务单
|
||||
/// </summary>
|
||||
[EnumRemark("出库任务单")]
|
||||
OutStockTask = 1,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user