//------------------------------------------------------------------------------
//
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
//------------------------------------------------------------------------------
namespace EMIS.Entities
{
#pragma warning disable 1573
using System;
using System.Collections.Generic;
///
/// ER_LevelSetting
///
public partial class ER_LevelSetting
{
public ER_LevelSetting()
{
this.ER_LevelSettingSubject = new HashSet();
this.ER_ProjectScore = new HashSet();
}
///
/// LevelSettingID
///
public System.Guid LevelSettingID { get; set; }
///
/// ExaminationProjectID
///
public Nullable ExaminationProjectID { get; set; }
///
/// LevelName
///
public string LevelName { get; set; }
///
/// IsPassed
///
public Nullable IsPassed { get; set; }
///
/// IsPassLine
///
public Nullable IsPassLine { get; set; }
///
/// RecordStatus
///
public Nullable RecordStatus { get; set; }
///
/// CreateTime
///
public Nullable CreateTime { get; set; }
///
/// CreateUserID
///
public Nullable CreateUserID { get; set; }
///
/// ModifyUserID
///
public Nullable ModifyUserID { get; set; }
///
/// ModifyTime
///
public Nullable ModifyTime { get; set; }
///
/// EX_ExaminationProject
///
public virtual EX_ExaminationProject EX_ExaminationProject { get; set; }
///
/// ER_LevelSettingSubject
///
public virtual HashSet ER_LevelSettingSubject { get; set; }
///
/// ER_ProjectScore
///
public virtual HashSet ER_ProjectScore { get; set; }
}
}