using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; public partial class Withdraw { public uint Id { get; set; } /// /// 提现人 /// public uint? UserId { get; set; } /// /// 提现:1=未审核,2=已通过3=未通过 /// public byte? Status { get; set; } /// /// 提现时间 /// public uint? Addtime { get; set; } /// /// 审核时间 /// public uint? EndTime { get; set; } /// /// 原因 /// public string? Reason { get; set; } /// /// 提现金额 /// public decimal TalMoney { get; set; } /// /// 到账金额 /// public decimal Money { get; set; } /// /// 手续费 /// public decimal Sxf { get; set; } /// /// 提现方式:1=微信,2=银行卡 3支付宝 /// public byte Type { get; set; } /// /// 收款二维码 /// public string? Imgurl { get; set; } /// /// 提现姓名/银行户名 /// public string? Name { get; set; } /// /// 支付宝账号/银行卡号 /// public string? Number { get; set; } /// /// 开户行 /// public string? Bank { get; set; } }