导出列表
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
|
||||
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
|
||||
{
|
||||
/// <summary>
|
||||
/// 保存
|
||||
/// </summary>
|
||||
/// <param name="entity"></param>
|
||||
/// <returns></returns>
|
||||
Task<FileDownManager> Add(FileDownManager entity);
|
||||
/// <summary>
|
||||
/// 编辑
|
||||
/// </summary>
|
||||
/// <param name="entity"></param>
|
||||
/// <returns></returns>
|
||||
Task<FileDownManager> Edit(FileDownManager entity);
|
||||
/// <summary>
|
||||
/// 获取销售列表
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<FileDownManagerResponse> GetList(FileDownManagerRequest dto,int companyId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user