31 lines
612 B
C#
31 lines
612 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 PaySupply
|
|
{
|
|
|
|
/// <summary>
|
|
/// 招商银行平台
|
|
/// </summary>
|
|
[Description("招商银行平台")]
|
|
MerchantsBankPay = 1,
|
|
|
|
/// <summary>
|
|
/// 富友支付平台
|
|
/// </summary>
|
|
[Description("富友支付平台")]
|
|
FuiouPay = 2,
|
|
|
|
|
|
}
|
|
}
|