31 lines
617 B
C#
31 lines
617 B
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using BarCode.Web.Core;
|
|
|
|
namespace BarCode.Web.Domain.Values
|
|
{
|
|
/// <summary>
|
|
/// 文件导出状态
|
|
/// </summary>
|
|
public enum ExportStatus
|
|
{
|
|
/// <summary>
|
|
/// 正在导出
|
|
/// </summary>
|
|
[EnumRemark("正在导出")]
|
|
Ing = 0,
|
|
/// <summary>
|
|
/// 导出成功
|
|
/// </summary>
|
|
[EnumRemark("导出成功")]
|
|
Success = 1,
|
|
/// <summary>
|
|
/// 导出失败
|
|
/// </summary>
|
|
[EnumRemark("导出失败")]
|
|
Fail = 2
|
|
}
|
|
}
|