using System;
namespace JiaZhiQuan.Common.Models.PO
{
///
/// n_balance_cashout_apply
///
public class BalanceCashoutApplyPO
{
///
/// 编号
///
public long id { get; set; }
///
/// 用户编号
///
public long userId { get; set; }
///
/// 资金变动id
///
public long detailsId { get; set; }
///
/// 提现金额(分为单位)
///
public int amount { get; set; }
///
/// 提现平台
///
public string platform { get; set; }
///
/// 用户真实姓名
///
public string uName { get; set; }
///
/// 用户支付宝登录名
///
public string loginName { get; set; }
///
/// 申请提现时间
///
public DateTime applyAt { get; set; }
///
/// 税率,如0.006即为千六
///
public float taxRate { get; set; }
///
/// 服务费率(支付宝扣除)
///
public float feeRate { get; set; }
///
/// 提现平台最低服务费(分为单位)
///
public int feeMinAmount { get; set; }
///
/// 0 待审核 1 审核通过 2 审核拒绝
///
public int status { get; set; }
///
/// 拒审原因
///
public string refuseReason { get; set; }
///
/// 备注(不公开)
///
public string note { get; set; }
///
/// 审核人员编号
///
public int checkSysUserId { get; set; }
///
/// 审核时间
///
public DateTime checkAt { get; set; }
}
}