You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
639 B
C#
32 lines
639 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 任务统计分类枚举
|
|
/// </summary>
|
|
public enum TaskStatLevelEnum
|
|
{
|
|
/// <summary>
|
|
/// 异常
|
|
/// </summary>
|
|
[Description("异常")]
|
|
EXCPTION,
|
|
/// <summary>
|
|
/// 个人
|
|
/// </summary>
|
|
[Description("个人")]
|
|
PERSON,
|
|
/// <summary>
|
|
/// 公共
|
|
/// </summary>
|
|
[Description("公共")]
|
|
PUBLIC
|
|
}
|
|
}
|