using System;
using System.Collections.Generic;
using System.Text;
using VT.FW.DB;
namespace Edu.Model.Entity.Course
{
///
/// 班级阶梯价实体类
///
[Serializable]
[DB(ConnectionName = "DefaultConnection")]
public class RB_Class_StepPrice
{
///
/// 课程阶梯价主键编号
///
public int ClassStepPriceId { get; set; }
///
/// 人数
///
public int PersionNum { get; set; }
///
/// 价格
///
public decimal PersionPrice { get; set; }
///
/// 课程编号
///
public int ClassId { get; set; }
///
/// 集团编号
///
public int Group_Id { get; set; }
///
/// 学校编号
///
public int School_Id { get; set; }
}
}