using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 状态操作类型枚举
///
public enum TrackingOperTypeEnum
{
///
/// 自动
///
[Description("自动")]
AUTO,
///
/// 手工
///
[Description("手工")]
MANUAL
}
}