using System; using System.Collections.Generic; using System.IO; using System.Text; using System.Threading.Tasks; using WMS.Web.Core.Internal.Results; namespace WMS.Web.Domain.IService { public interface IQiniuUploadService { /// /// 上传文件 /// /// /// /// 是否开启自动删除 如果开启 3天后自动删除 导出的execl文件 /// Task> Upload(string fileName, Stream stream,bool isAutoDelte= false); } }