using System;
using VT.FW.DB;
namespace Edu.Model.Entity.Course
{
///
/// 课程报价详情实体类
///
[Serializable]
[DB(ConnectionName = "DefaultConnection")]
public class RB_Course_OfferDetails
{
///
/// 主键编号
///
public int DetailsId { get; set; }
///
/// 报价单编号
///
public int OfferId { get; set; }
///
/// 课程编号
///
public int CourseId { get; set; }
///
/// 课时
///
public int ClassHours { get; set; }
///
/// 原价
///
public decimal OriginalPrice { get; set; }
///
/// 优惠金额
///
public decimal DiscountPrice { get; set; }
///
/// 折后价(实际价格)
///
public decimal ActualPrice { get; set; }
///
/// 备注
///
public string Remark { get; set; }
}
}