You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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-28 17:11
- /// 描 述:教学楼信息管理
- /// </summary>
- public class ClassroomBuildingEntity
- {
- #region 实体成员
- /// <summary>
- /// ClassroomBuildingId
- /// </summary>
- [Column("CLASSROOMBUILDINGID")]
- public string ClassroomBuildingId { get; set; }
- /// <summary>
- /// 教学楼号
- /// </summary>
- [Column("CLASSROOMBUILDINGNO")]
- public string ClassroomBuildingNo { get; set; }
- /// <summary>
- /// 教学楼名称
- /// </summary>
- [Column("CLASSROOMBUILDINGNAME")]
- public string ClassroomBuildingName { get; set; }
- /// <summary>
- /// SyncFlag
- /// </summary>
- [Column("SYNCFLAG")]
- public bool? SyncFlag { get; set; }
- #endregion
-
- #region 扩展操作
- /// <summary>
- /// 新增调用
- /// </summary>
- public void Create()
- {
- this.ClassroomBuildingId = Guid.NewGuid().ToString();
- }
- /// <summary>
- /// 编辑调用
- /// </summary>
- /// <param name="keyValue"></param>
- public void Modify(string keyValue)
- {
- this.ClassroomBuildingId = keyValue;
- }
- #endregion
- #region 扩展字段
- #endregion
- }
- }
|