using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 辅助使用 信用卡对账类
///
public class CreditCardBilInfo
{
///
/// 卡类型编号 -- setDate表ID
///
public string CTDId { get; set; }
///
/// 持卡人Name
///
public string CardholderName { get; set; }
///
/// 银行卡号
///
public string BankNo { get; set; }
///
/// 消费日期
///
public string ConsumptionDate { get; set; }
///
/// 操作日期
///
public string OperatorsDate { get; set; }
///
/// 付款金额
///
public float PayMoney { get; set; }
///
/// 付款币种
///
public string PaymentCurrency { get; set; }
///
/// 付款当日汇率
///
public string ThatDayRate { get; set; }
///
/// 人民币金额
///
public string RmbPrice { get; set; }
///
/// 消费方式
///
public string ConsumptionPatterns { get; set; }
///
/// 操作人 -- users 表 id
///
public string Operators { get; set; }
}
}