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.
|
|
|
|
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,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 查询所有服务项目和关联状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("查询所有服务项目和关联状态")]
|
|
|
|
|
QUERY_SERVICE_ALL,
|
|
|
|
|
}
|
|
|
|
|
}
|