IMakeTemplateGategoryService.cs 526 B

12345678910111213141516171819202122
  1. using Model;
  2. using Model.Base;
  3. using Microsoft.AspNetCore.Mvc;
  4. using Vo.Admin;
  5. namespace Services
  6. {
  7. public interface IMakeTemplateGategoryService : IBaseService<MakeTemplateGategory>
  8. {
  9. /// <summary>
  10. /// 生成模板分类-列表
  11. /// </summary>
  12. /// <param name="param">参数请求体</param>
  13. /// <param name="page">分页参数</param>
  14. /// <returns>列表</returns>
  15. List<GetMakeTemplateGategoryListVo> getMakeTemplateGategoryList(int parentId = 0);
  16. }
  17. }