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.
 
 
 
 
 
 

66 lines
1.7 KiB

  1. using Learun.Util;
  2. using System;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. namespace Learun.Application.TwoDevelopment.EducationalAdministration
  5. {
  6. /// <summary>
  7. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  8. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  9. /// 创 建:超级管理员
  10. /// 日 期:2019-11-19 10:33
  11. /// 描 述:实习成绩管理
  12. /// </summary>
  13. public class InternshipAchievementEntity
  14. {
  15. #region 实体成员
  16. /// <summary>
  17. /// 编号
  18. /// </summary>
  19. [Column("ID")]
  20. public string ID { get; set; }
  21. /// <summary>
  22. /// 学生
  23. /// </summary>
  24. [Column("STUDENTID")]
  25. public string StudentID { get; set; }
  26. /// <summary>
  27. /// 成绩
  28. /// </summary>
  29. [Column("ACHIEVEMENT")]
  30. public string Achievement { get; set; }
  31. /// <summary>
  32. /// 录入日期
  33. /// </summary>
  34. [Column("ADDTIME")]
  35. public string AddTime { get; set; }
  36. /// <summary>
  37. /// 备注
  38. /// </summary>
  39. [Column("REMARK")]
  40. public string Remark { get; set; }
  41. #endregion
  42. #region 扩展操作
  43. /// <summary>
  44. /// 新增调用
  45. /// </summary>
  46. public void Create()
  47. {
  48. this.ID = Guid.NewGuid().ToString();
  49. }
  50. /// <summary>
  51. /// 编辑调用
  52. /// </summary>
  53. /// <param name="keyValue"></param>
  54. public void Modify(string keyValue)
  55. {
  56. this.ID = keyValue;
  57. }
  58. #endregion
  59. #region 扩展字段
  60. #endregion
  61. }
  62. }