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.
 
 
 
 
 
 

34 lines
988 B

  1. using System.Collections.Generic;
  2. namespace Learun.Application.AppMagager
  3. {
  4. /// <summary>
  5. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  6. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  7. /// 创 建:超级管理员
  8. /// 日 期:2018-06-26 10:32
  9. /// 描 述:我的常用移动应用
  10. /// </summary>
  11. public interface MyFunctionIBLL
  12. {
  13. #region 获取数据
  14. /// <summary>
  15. /// 获取列表数据
  16. /// </summary>
  17. /// <param name="userId">用户主键ID</param>
  18. /// <returns></returns>
  19. IEnumerable<MyFunctionEntity> GetList(string userId);
  20. #endregion
  21. #region 提交数据
  22. /// <summary>
  23. /// 保存实体数据(新增、修改)
  24. /// <param name="keyValue">主键</param>
  25. /// <summary>
  26. /// <returns></returns>
  27. void SaveEntity(string userId, string strFunctionId);
  28. #endregion
  29. }
  30. }