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.
23 lines
1.0 KiB
23 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace Shentun.WebPeis.Enums
|
|
{
|
|
public class PayModeFlag
|
|
{
|
|
[Description("现金")] public const string Cash = "01";
|
|
[Description("银行卡")] public const string BankCard = "02";
|
|
[Description("支票")] public const string Cheque = "03";
|
|
[Description("记账")] public const string Bill = "04";
|
|
[Description("充值卡")] public const string RechargeCard = "05";
|
|
[Description("医保卡")] public const string InsurancePay = "06";
|
|
[Description("微信")] public const string WeChatPay = "07";
|
|
[Description("支付宝")] public const string AliPay = "08";
|
|
[Description("京东支付")] public const string JdPay = "09";
|
|
[Description("聚合支付")] public const string PolymerizationPay = "10";
|
|
[Description("军保统筹")] public const string ArmyPay = "11";
|
|
[Description("工行融E联")] public const string Icbc = "12";
|
|
}
|
|
}
|