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.
27 lines
526 B
C#
27 lines
526 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 TrackingOperTypeEnum
|
|
{
|
|
/// <summary>
|
|
/// 自动
|
|
/// </summary>
|
|
[Description("自动")]
|
|
AUTO,
|
|
/// <summary>
|
|
/// 手工
|
|
/// </summary>
|
|
[Description("手工")]
|
|
MANUAL
|
|
}
|
|
}
|