mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 19:53:27 +08:00
【新增】后台提现审核功能增加【企业付款到零钱】【企业付款到银行卡】
This commit is contained in:
@@ -320,15 +320,31 @@ namespace CoreCms.Net.Configuration
|
||||
/// <summary>
|
||||
/// 用户提现状态[对应CoreCmsUserTocash表的status字段]
|
||||
/// </summary>
|
||||
public enum UserTocashTypes
|
||||
public enum UserTocashStatus
|
||||
{
|
||||
[Description("待审核")]
|
||||
待审核 = 1,
|
||||
[Description("提现成功")]
|
||||
提现成功 = 2,
|
||||
[Description("提现失败")]
|
||||
提现失败 = 3
|
||||
提现失败 = 3,
|
||||
[Description("提现异常")]
|
||||
提现异常 = 4
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 用户提现状态[对应CoreCmsUserTocash表的type字段]
|
||||
/// </summary>
|
||||
public enum UserTocashType
|
||||
{
|
||||
[Description("银行线下转账")]
|
||||
银行线下转账 = 0,
|
||||
[Description("微信付款到零钱")]
|
||||
微信付款到零钱 = 1,
|
||||
[Description("微信付款到银行卡")]
|
||||
微信付款到银行卡 = 2
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Order订单相关=========================================================
|
||||
|
||||
Reference in New Issue
Block a user