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.
 
 
 
 
 
 

55 lines
1.3 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-06-17 16:22
  11. /// 描 述:移动测试
  12. /// </summary>
  13. public class MobileTestEntity
  14. {
  15. #region 实体成员
  16. /// <summary>
  17. /// ID
  18. /// </summary>
  19. [Column("ID")]
  20. public string ID { get; set; }
  21. /// <summary>
  22. /// name
  23. /// </summary>
  24. [Column("NAME")]
  25. public string name { get; set; }
  26. /// <summary>
  27. /// age
  28. /// </summary>
  29. [Column("AGE")]
  30. public string age { get; set; }
  31. #endregion
  32. #region 扩展操作
  33. /// <summary>
  34. /// 新增调用
  35. /// </summary>
  36. public void Create(UserInfo userInfo)
  37. {
  38. }
  39. /// <summary>
  40. /// 编辑调用
  41. /// </summary>
  42. /// <param name="keyValue"></param>
  43. public void Modify(string keyValue, UserInfo userInfo)
  44. {
  45. this.ID = keyValue;
  46. }
  47. #endregion
  48. #region 扩展字段
  49. #endregion
  50. }
  51. }