using Model; using Model.Base; using Microsoft.AspNetCore.Mvc; using Vo.Admin; namespace Services { public interface IAppModuleFileService : IBaseService { /// /// APP功能模块文件-列表 /// /// 参数请求体 /// 分页参数 /// 列表 PagedInfo getAppModuleFileList([FromQuery] PagerInfo page, [FromQuery] AppModuleFile param); } }