32 lines
853 B
C#
32 lines
853 B
C#
|
|
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);
|
|
}
|
|
}
|