using Model; using Model.Base; using Microsoft.AspNetCore.Mvc; namespace Services { public interface IUploadService { /// /// 上传文件 /// /// 文件流 /// 上传文件到本地 string getPicPath(IFormFile file); } }