using Edu.Model.Entity.Course;
using System;
using System.Collections.Generic;
using System.Text;

namespace Edu.Model.ViewModel.Course
{
    /// <summary>
    /// 课程优惠表扩展实体类
    /// </summary>
    public class RB_Course_Preferential_Extend: RB_Course_Preferential
    {
        /// <summary>
        /// 课程编号
        /// </summary>
        public string QCourseIds { get; set; }

        /// <summary>
        /// 优惠类型字符串
        /// </summary>
        public string PriceDiscountTypeStr { get { return Common.Plugin.EnumHelper.ToName(this.PriceDiscountType); } }
    }
}