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.PersonnelManagement
- {
- /// <summary>
- /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
- /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
- /// 创 建:超级管理员
- /// 日 期:2021-05-12 11:43
- /// 描 述:研究指导
- /// </summary>
- public class StudyGuideEntity
- {
- #region 实体成员
- /// <summary>
- /// StudyID
- /// </summary>
- [Column("STUDYID")]
- public string StudyID { get; set; }
- /// <summary>
- /// StudyName
- /// </summary>
- [Column("STUDYNAME")]
- public string StudyName { get; set; }
- /// <summary>
- /// 创建用户
- /// </summary>
- [Column("CREATEUSERNAME")]
- public string CreateUserName { get; set; }
- /// <summary>
- /// 添加时间
- /// </summary>
- [Column("CREATETIME")]
- public DateTime? CreateTime { get; set; }
- /// <summary>
- /// GuideState
- /// </summary>
- [Column("GUIDESTATE")]
- public string GuideState { get; set; }
- /// <summary>
- /// AttachmentUp
- /// </summary>
- [Column("ATTACHMENTUP")]
- public string AttachmentUp { get; set; }
- #endregion
-
- #region 扩展操作
- /// <summary>
- /// 新增调用
- /// </summary>
- public void Create()
- {
- this.StudyID = Guid.NewGuid().ToString();
- this.CreateUserName = (LoginUserInfo.Get()).realName;
- this.CreateTime = DateTime.Now;
- }
- /// <summary>
- /// 编辑调用
- /// </summary>
- /// <param name="keyValue"></param>
- public void Modify(string keyValue)
- {
- this.StudyID = keyValue;
- }
- #endregion
- #region 扩展字段
- #endregion
- }
- }
|