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