| 1234567891011121314151617 |
- using Model;
- using Model.Base;
- using Microsoft.AspNetCore.Mvc;
- namespace Services
- {
- public interface IUploadService
- {
- /// <summary>
- /// 上传文件
- /// </summary>
- /// <param name="file">文件流</param>
- /// <returns>上传文件到本地</returns>
- string getPicPath(IFormFile file);
- }
- }
|