using Learun.Util; using System; using System.ComponentModel.DataAnnotations.Schema; namespace Learun.Application.TwoDevelopment.PersonnelManagement { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创 建:超级管理员 /// 日 期:2019-12-26 16:33 /// 描 述:掌上报修 /// public class EmpRepairEntity { #region 实体成员 /// /// Id /// [Column("ID")] public string Id { get; set; } /// /// ApplyCode /// [Column("APPLYCODE")] public string ApplyCode { get; set; } /// /// ApplyUserId /// [Column("APPLYUSERID")] public string ApplyUserId { get; set; } /// /// ApplyContent /// [Column("APPLYCONTENT")] public string ApplyContent { get; set; } /// /// ApplyTime /// [Column("APPLYTIME")] public DateTime? ApplyTime { get; set; } /// /// CreateTime /// [Column("CREATETIME")] public DateTime? CreateTime { get; set; } /// /// CreateUserId /// [Column("CREATEUSERID")] public string CreateUserId { get; set; } /// /// CreateUserName /// [Column("CREATEUSERNAME")] public string CreateUserName { get; set; } #endregion #region 扩展操作 /// /// 新增调用 /// public void Create(UserInfo userInfo) { this.Id = Guid.NewGuid().ToString(); } /// /// 编辑调用 /// /// public void Modify(string keyValue, UserInfo userInfo) { this.Id = keyValue; } #endregion #region 扩展字段 #endregion } }