using Dto; using Vo; using Model; using Model.Base; using Microsoft.AspNetCore.Mvc; namespace Services.Client { public interface IFileUpdateInfoService : IBaseService { /// /// APP-静态资源 /// /// 请求参数 /// APP静态资源 PagedInfo StaticFiles([FromQuery] AppStaticFilesDto parm); } }