using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CY.Model.Pay
{
///
/// 会员账户查询实体类(无数据库表对应)
///
public class PaymentAccountQueryModel
{
///
/// 累计积分
///
public int AllScore { get; set; }
///
/// 使用积分
///
public int UsedScore { get; set; }
///
/// 剩余积分
///
public int SurplusScore
{
get
{
return AllScore - UsedScore;
}
}
///
/// 总推广收益
///
public decimal AllPromotionMoney { get; set; }
///
/// 已兑收益
///
public decimal UsedPromotionMoney { get; set; }
///
/// 未兑收益
///
public decimal SurplusPromotionMoney {
get
{
return AllPromotionMoney - UsedPromotionMoney;
}
}
///
/// 总交易佣金
///
public decimal AllCommissionMoney { get; set; }
///
/// 已付佣金
///
public decimal UsedCommissionMoney { get; set; }
///
/// 未付佣金
///
public decimal SurplusCommissionMoney {
get
{
return AllCommissionMoney - UsedCommissionMoney;
}
}
///
/// 总消费金额
///
public decimal AllPayMoney
{
get
{
return PayMoneyByPrint;
}
}
///
/// 印刷交易
///
public decimal PayMoneyByPrint
{
get;
set;
}
}
}