//------------------------------------------------------------------------------
//
// 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 EMISOnline.Entities
{
#pragma warning disable 1573
using System;
using System.Collections.Generic;
///
/// CF_Department
///
public partial class CF_Department
{
public CF_Department()
{
this.EM_SpecialtyCourse = new HashSet();
}
///
/// DepartmentID
///
public System.Guid DepartmentID { get; set; }
///
/// CollegeID
///
public Nullable CollegeID { get; set; }
///
/// No
///
public string No { get; set; }
///
/// Name
///
public string Name { get; set; }
///
/// SimpleName
///
public string SimpleName { get; set; }
///
/// EnglishName
///
public string EnglishName { get; set; }
///
/// ParentDepartmentID
///
public Nullable ParentDepartmentID { get; set; }
///
/// HierarchyID
///
public string HierarchyID { get; set; }
///
/// RecordStatus
///
public Nullable RecordStatus { get; set; }
///
/// CreateUserID
///
public Nullable CreateUserID { get; set; }
///
/// CreateTime
///
public Nullable CreateTime { get; set; }
///
/// ModifyUserID
///
public Nullable ModifyUserID { get; set; }
///
/// ModifyTime
///
public Nullable ModifyTime { get; set; }
///
/// EM_SpecialtyCourse
///
public virtual HashSet EM_SpecialtyCourse { get; set; }
}
}