using Model; using Model.Base; using Microsoft.AspNetCore.Mvc; using Vo.Admin; namespace Services { public interface IMakeTemplateGategoryService : IBaseService { /// /// 生成模板分类-列表 /// /// 参数请求体 /// 分页参数 /// 列表 List getMakeTemplateGategoryList(int parentId = 0); } }