Commit 40b71267 authored by 黄奎's avatar 黄奎

新增实体了

parent 8e1c50c7
using System;
using System.Collections.Generic;
using System.Text;
using VT.FW.DB;
namespace Edu.Model.Entity.Exam
{
/// <summary>
/// 试卷考试学员实体类
/// </summary>
[Serializable]
[DB(ConnectionName = "DefaultConnection")]
public class RB_Examination_Student
{
/// <summary>
/// 考试学员管理主键编号
/// </summary>
public int Id { get; set; }
/// <summary>
/// 发布考试编号
/// </summary>
public int PublishId { get; set; }
/// <summary>
/// 试卷编号
/// </summary>
public int PaperId { get; set; }
/// <summary>
/// 学员编号
/// </summary>
public int GuestId { get; set; }
/// <summary>
/// 班级编号
/// </summary>
public int ClassId { get; set; }
/// <summary>
/// 订单编号
/// </summary>
public int OrderId { get; set; }
/// <summary>
/// 课程编号
/// </summary>
public int? CourseId { get; set; }
}
}
using Edu.Model.Entity.Exam;
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Model.ViewModel.Exam
{
/// <summary>
/// 试卷考试学员视图实体类
/// </summary>
public class RB_Examination_Student_ViewModel : RB_Examination_Student
{
}
}
\ No newline at end of file
using Edu.Model.Entity.Exam;
using System;
using System.Collections.Generic;
using System.Text;
namespace Edu.Repository.Exam
{
/// <summary>
/// 试卷考试学员仓储层
/// </summary>
public class RB_Examination_StudentRepository:BaseRepository<RB_Examination_Student>
{
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment