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/TrackingSourceTypeEnum.cs

27 lines
528 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 TrackingSourceTypeEnum
{
/// <summary>
/// 人工
/// </summary>
[Description("人工")]
MANUAL,
1 year ago
/// <summary>
/// 自动
/// </summary>
[Description("自动")]
AUTO
}
}