|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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-11-19 10:33
- /// 描 述:实习成绩管理
- /// </summary>
- public class InternshipAchievementEntity
- {
- #region 实体成员
- /// <summary>
- /// 编号
- /// </summary>
- [Column("ID")]
- public string ID { get; set; }
- /// <summary>
- /// 学生
- /// </summary>
- [Column("STUDENTID")]
- public string StudentID { get; set; }
- /// <summary>
- /// 成绩
- /// </summary>
- [Column("ACHIEVEMENT")]
- public string Achievement { get; set; }
- /// <summary>
- /// 录入日期
- /// </summary>
- [Column("ADDTIME")]
- public string AddTime { get; set; }
- /// <summary>
- /// 备注
- /// </summary>
- [Column("REMARK")]
- public string Remark { get; set; }
- #endregion
-
- #region 扩展操作
- /// <summary>
- /// 新增调用
- /// </summary>
- public void Create()
- {
- this.ID = Guid.NewGuid().ToString();
- }
- /// <summary>
- /// 编辑调用
- /// </summary>
- /// <param name="keyValue"></param>
- public void Modify(string keyValue)
- {
- this.ID = keyValue;
- }
- #endregion
- #region 扩展字段
- #endregion
- }
- }
-
|