using Dto; using Vo; using Model; using Model.Base; using Microsoft.AspNetCore.Mvc; namespace Services { public interface IApiInfoService : IBaseService { /// /// api接口-列表 /// /// 请求参数 /// api接口列表 PagedInfo List([FromQuery] PagerInfo page, [FromQuery] ApiInfoListDto parm); } }