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-11-19 10:29 /// 描 述:实习日志管理 /// public class InternShipLogEntity { #region 实体成员 /// /// 编号 /// [Column("ID")] public string ID { get; set; } /// /// 学生 /// [Column("STUDENTID")] public string StudentID { get; set; } /// /// 联系方式 /// [Column("MOBILE")] public string Mobile { get; set; } /// /// 日志名称 /// [Column("LOGNAME")] public string LogName { get; set; } /// /// 实习单位 /// [Column("IUNIT")] public string IUnit { get; set; } /// /// 提交日期 /// [Column("ADDTIME")] public string AddTime { get; set; } /// /// 日志内容 /// [Column("LOGCONTENT")] public string LogContent { get; set; } /// /// 备注 /// [Column("REMARK")] public string Remark { get; set; } #endregion #region 扩展操作 /// /// 新增调用 /// public void Create() { this.ID = Guid.NewGuid().ToString(); } /// /// 编辑调用 /// /// public void Modify(string keyValue) { this.ID = keyValue; } #endregion #region 扩展字段 #endregion } }