2025-04-24 18:31:27 +08:00

44 lines
860 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Enumeration
{
/// <summary>
/// 充值业务的状态 0=申请95=撤销97=拒绝100=完成。
/// </summary>
public enum BasMemberRechargeFlag
{
/// <summary>
/// 申请
/// </summary>
[Description("申请")]
Create = 0,
/// <summary>
/// 拒绝/失败
/// </summary>
[Description("拒绝/失败")]
Refuse = 97,
/// <summary>
/// 完成
/// </summary>
[Description("完成")]
Success = 100,
/// <summary>
/// 撤销
/// </summary>
[Description("撤销")]
Cancel = 95
}
}