You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
641 B
29 lines
641 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GDZZ.Application
|
|
{
|
|
/// <summary>
|
|
/// 退款状态
|
|
/// </summary>
|
|
public enum RefundStatusEnum
|
|
{
|
|
/// <summary>
|
|
/// 退款中
|
|
/// </summary>
|
|
[Description("退款中")] REDIND = 0,
|
|
/// <summary>
|
|
/// 退款失败
|
|
/// </summary>
|
|
[Description("退款失败")] REFAILED =1,
|
|
/// <summary>
|
|
/// 退款成功
|
|
/// </summary>
|
|
[Description("退款成功")] RESUCCESS = 2,
|
|
}
|
|
}
|