using JiaZhiQuan.Common.Utils; using System; using static JiaZhiQuan.Common.Balance; namespace JiaZhiQuan.Common.Models.VO.BalanceManage { /// /// 提现管理-提现总表 /// public class WithdrawSummaryTableVO { public long id { get; set; } public DateTime applyAt { get; set; } public long userId { get; set; } public string userAlias { get; set; } public string userName { get; set; } public string userIdNumber { get; set; } public string platformName { get; set; } public string platformAccount { get; set; } public CashoutApplyStatus status { get; set; } public CashoutTaskStatus? taskStatus { get; set; } public string payOrderId { get; set; } public string failedReason { get; set; } public int amount { get; set; } public float taxRate { get; set; } public float feeRate { get; set; } public int feeMinAmount { get; set; } public long detailsId { get; set; } public DateTime? checkAt { get; set; } } /// /// 提现管理-待审核列表 /// public class WithdrawSummaryResultVO { public string id { get; set; } public DateTime applyAt { get; set; } /// /// 状态 /// public string status { get; set; } /// /// 状态额外信息 /// public string statusNote { get; set; } /// /// 用户ID /// public string userId { get; set; } /// /// 用户平台昵称 /// public string userAlias { get; set; } /// /// 用户真实姓名 /// public string userName { get; set; } /// /// 身份证号码 /// public string userIdNumber { get; set; } /// /// 支付平台名称 /// public string platformName { get; set; } /// /// 支付平台账号 /// public string platformAccount { get; set; } /// /// 提现金额(元) /// public string amountYuan { get; set; } /// /// 税费(元) /// public string taxAmountYuan { get; set; } /// /// 税率(%) /// public string taxRate { get; set; } /// /// 服务费(元) /// public string feeAmountYuan { get; set; } /// /// 服务费率(%) /// public string feeRate { get; set; } /// /// 最低服务费(元) /// public string feeMinAmountYuan { get; set; } /// /// 实际到账(元) /// public string realAmountYuan { get; set; } /// /// 资金变动id /// public string detailsId { get; set; } /// /// 审核时间 /// public DateTime? checkAt { get; set; } } }