mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 16:03:25 +08:00
前端【新增】完善用户提现前端领取金额的处理。
This commit is contained in:
@@ -8382,6 +8382,11 @@
|
||||
反馈结果
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:CoreCms.Net.Model.Entities.CoreCmsUserTocash.needUserGet">
|
||||
<summary>
|
||||
需要用户领取
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:CoreCms.Net.Model.Entities.CoreCmsUserTocash.statusName">
|
||||
<summary>
|
||||
状态说明
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2022/7/4 23:39:39
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2025/7/29 16:51:40
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
@@ -32,142 +32,115 @@ namespace CoreCms.Net.Model.Entities
|
||||
[Display(Name = "id")]
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
public System.Int32 id { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 用户ID
|
||||
/// </summary>
|
||||
[Display(Name = "用户ID")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
public System.Int32 userId { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 提现金额
|
||||
/// </summary>
|
||||
[Display(Name = "提现金额")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
public System.Decimal money { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 银行名称
|
||||
/// </summary>
|
||||
[Display(Name = "银行名称")]
|
||||
|
||||
[StringLength(maximumLength: 60, ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String bankName { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 银行缩写
|
||||
/// </summary>
|
||||
[Display(Name = "银行缩写")]
|
||||
|
||||
[StringLength(maximumLength: 12, ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String bankCode { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 账号地区ID
|
||||
/// </summary>
|
||||
[Display(Name = "账号地区ID")]
|
||||
public System.Int32? bankAreaId { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 开户行
|
||||
/// </summary>
|
||||
[Display(Name = "开户行")]
|
||||
|
||||
[StringLength(maximumLength: 255, ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String accountBank { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 账户名
|
||||
/// </summary>
|
||||
[Display(Name = "账户名")]
|
||||
|
||||
[StringLength(maximumLength: 60, ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String accountName { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 卡号
|
||||
/// </summary>
|
||||
[Display(Name = "卡号")]
|
||||
|
||||
[StringLength(maximumLength: 30, ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
public System.String cardNumber { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 提现服务费
|
||||
/// </summary>
|
||||
[Display(Name = "提现服务费")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
public System.Decimal withdrawals { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 提现状态
|
||||
/// </summary>
|
||||
[Display(Name = "提现状态")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
public System.Int32 status { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[Display(Name = "创建时间")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
public System.DateTime createTime { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
/// </summary>
|
||||
[Display(Name = "更新时间")]
|
||||
public System.DateTime? updateTime { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 提现方式
|
||||
/// </summary>
|
||||
[Display(Name = "提现方式")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
|
||||
|
||||
public System.Int32 type { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 反馈结果
|
||||
/// </summary>
|
||||
[Display(Name = "反馈结果")]
|
||||
[StringLength(maximumLength: 100, ErrorMessage = "{0}不能超过{1}字")]
|
||||
|
||||
|
||||
[StringLength(maximumLength: 1000, ErrorMessage = "{0}不能超过{1}字")]
|
||||
public System.String message { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 需要用户领取
|
||||
/// </summary>
|
||||
[Display(Name = "需要用户领取")]
|
||||
[Required(ErrorMessage = "请输入{0}")]
|
||||
public System.Boolean needUserGet { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -32,5 +32,12 @@ namespace CoreCms.Net.Model.Entities
|
||||
[Display(Name = "用户昵称")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string userNickName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 商家转账反馈数据
|
||||
/// </summary>
|
||||
[Display(Name = "商家转账反馈数据")]
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public object merchantTransferData { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user