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.

28 lines
582 B

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GDZZ.Application
{
public enum PayStatusEnum
{
/// <summary>
/// 已取消
/// </summary>
[Description("已取消")] Cancel = 0,
/// <summary>
/// 未成功
/// </summary>
[Description("未成功")] NotPaying = 10,
/// <summary>
/// 已成功
/// </summary>
[Description("已成功")] Paying = 20
}
}