using Learun.Util; using System; using System.ComponentModel.DataAnnotations.Schema; namespace Learun.Application.TwoDevelopment.EducationalAdministration { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创 建:超级管理员 /// 日 期:2019-01-22 10:53 /// 描 述:系部信息管理 /// public class CdDeptEntity { #region 实体成员 /// /// DeptId /// [Column("DEPTID")] public string DeptId { get; set; } /// /// 系所代码(部门号) /// [Column("DEPTNO")] public string DeptNo { get; set; } /// /// 系所名称(部门名) /// [Column("DEPTNAME")] public string DeptName { get; set; } [Column("F_SCHOOLID")] public string F_SchoolId { get; set; } /// /// 系所(部门)简称 /// [Column("DEPTSHORTNAME")] public string DeptShortName { get; set; } /// /// 系所英文简称 /// [Column("DEPTENBRIEF")] public string DeptEnBrief { get; set; } /// /// 排序 /// [Column("DEPTSORT")] public int? DeptSort { get; set; } /// /// 系所英文简称 /// [Column("DEPTENSHORT")] public string DeptEnShort { get; set; } /// /// 系主任的职工号 /// [Column("DEPTDIRECTOR")] public string DeptDirector { get; set; } /// /// 教学秘书的职工号 /// [Column("TEACHSECRETARY")] public string TeachSecretary { get; set; } /// /// 曾用名 /// [Column("DEPTOLDNAME")] public string DeptOldName { get; set; } /// /// SyncFlag /// [Column("SYNCFLAG")] public bool? SyncFlag { get; set; } #endregion #region 扩展操作 /// /// 新增调用 /// public void Create() { this.DeptId = Guid.NewGuid().ToString(); } /// /// 编辑调用 /// /// public void Modify(string keyValue) { this.DeptId = keyValue; } #endregion #region 扩展字段 #endregion } }