飞星
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 line
810 B

  1. using Permission.Entity.Disk;
  2. namespace Permission.Service.IServices
  3. {
  4. public interface IDiskFolderService
  5. {
  6. bool AddModel(DiskFolder model);
  7. #region api
  8. /// <summary>
  9. /// 新建文件夹
  10. /// </summary>
  11. /// <param name="model">文件夹实体</param>
  12. /// <returns></returns>
  13. bool SaveFolderApi(DiskFolder model);
  14. /// <summary>
  15. /// 编辑文件夹
  16. /// </summary>
  17. /// <returns></returns>
  18. bool EditFolderApi(int folderid, string newfoldername, int userid);
  19. /// <summary>
  20. /// 删除文件夹
  21. /// </summary>
  22. /// <param name="folderid">文件夹主键</param>
  23. /// <returns></returns>
  24. bool DeleteFolderApi(int folderid);
  25. #endregion
  26. }
  27. }