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.
BookingHeChuan/Myshipping.Application/Enum/TrackingQueryTypeEnum.cs

27 lines
633 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 TrackingQueryTypeEnum
{
/// <summary>
/// 查询服务项目
/// </summary>
[Description("查询服务项目")]
QUERY_SERVICE_PROJECT,
/// <summary>
/// 查询服务项目和状态
/// </summary>
[Description("查询服务项目和状态")]
QUERY_SERVICE_PROJECT_STATUS,
}
}