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.
 
 
 
 
 
 

71 lines
1.8 KiB

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