using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using WMS.Web.Core.Dto; using WMS.Web.Domain.Entitys; namespace WMS.Web.Domain.Infrastructure { public interface IFileDownManagerRepositories { /// /// 保存 /// /// /// Task Add(FileDownManager entity); /// /// 编辑 /// /// /// Task Edit(FileDownManager entity); /// /// 获取销售列表 /// /// Task GetList(FileDownManagerRequest dto,int companyId); } }