using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity.Enum
{
///
/// 支付方式
///
public enum PayWayEnum
{
///
/// 0未知
///
[Description("未知")]
UnKnow = 0,
///
/// 1支付宝
///
[Description("支付宝")]
AliPay = 1,
///
/// 2微信
///
[Description("微信")]
WeChatPay = 2
}
}