123456789101112131415161718192021 |
- using Dto;
- using Vo;
- using Model;
- using Model.Base;
- using Microsoft.AspNetCore.Mvc;
- namespace Services.Client
- {
- public interface IFileUpdateInfoService : IBaseService<FileUpdateInfo>
- {
-
-
-
-
-
- PagedInfo<AppStaticFilesVo> StaticFiles([FromQuery] AppStaticFilesDto parm);
- }
- }
|