using Edu.Model.Entity.Customer; using System; using System.Collections.Generic; using System.Text; namespace Edu.Model.ViewModel.Customer { /// /// 客户完成任务和订单关联扩展实体 /// public class RB_Customer_Finishdetails_Extend : RB_Customer_Finishdetails { /// /// 学员数量 /// public int GuestNum { get; set; } /// /// 兑换人数 /// public int ExchangeNum { get; set; } /// /// 实收 /// public decimal Income { get; set; } /// /// 兑换金额 /// public decimal ExchangeMoney { get; set; } /// /// 完成类型 /// public string FinishTypeStr { get { string str = ""; if (this.FinishType == 1) { str = "报名人数"; } else if (this.FinishType == 2) { str = "完成订单金额"; } return str; } } } }