using JiaZhiQuan.Common.Utils;
using System;
namespace JiaZhiQuan.Common.Models.VO.BalanceManage
{
///
/// 提现管理-待审核列表
///
public class PendingApprovalVO
{
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 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 class PendingApprovalResultVO
{
public string id { get; set; }
public DateTime applyAt { 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; }
}
}