34 lines
679 B
C#
34 lines
679 B
C#
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>
|
|
/// 支付订单的业务类型
|
|
/// </summary>
|
|
public enum PaySheetType
|
|
{
|
|
/// <summary>
|
|
/// 销售
|
|
/// </summary>
|
|
[Description("销售")]
|
|
Sales = 8010,
|
|
|
|
/// <summary>
|
|
/// 预售
|
|
/// </summary>
|
|
[Description("预售")]
|
|
PreSales = 8011,
|
|
|
|
/// <summary>
|
|
/// 充值
|
|
/// </summary>
|
|
[Description("充值")]
|
|
Recharge = 100
|
|
}
|
|
}
|