using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CY.Model.Pay { /// /// 显示管理员当前账户信息(显示用,没有数据库对应) /// public class PaymentAccountModelByAdmin { /// /// 总账金额 /// public decimal AllHaveMoney { get; set; } /// /// 应收金额 /// public decimal CanHaveMoney { get; set; } /// /// 应付金额 /// public decimal CanPayMoney { get; set; } /// /// 实际余额 /// public decimal ActualHaveMoney { get { return AllHaveMoney + CanHaveMoney - CanPayMoney; } } /// /// 总收入 /// public decimal TotalIncome { get; set; } /// /// 总支出 /// public decimal TotalExpend { get; set; } /// /// 总盈利 /// public decimal TotalProfit { get { return TotalIncome - TotalExpend; } } /// /// 未返授信 /// public decimal NoReturnCredit { get; set; } } }