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.
34 lines
755 B
C#
34 lines
755 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
public enum TaskChargeStatusEnum
|
|
{
|
|
/// <summary>
|
|
/// 成功
|
|
/// </summary>
|
|
[Description("成功")]
|
|
SUCC,
|
|
/// <summary>
|
|
/// 没有计费标准
|
|
/// </summary>
|
|
[Description("没有计费标准")]
|
|
NO_PRICE,
|
|
/// <summary>
|
|
/// 扣费失败
|
|
/// </summary>
|
|
[Description("扣费失败")]
|
|
CHARGE_FAIL,
|
|
/// <summary>
|
|
/// 未知处理结果
|
|
/// </summary>
|
|
[Description("未知处理结果")]
|
|
UNKNOW_RESULT,
|
|
}
|
|
}
|