18 lines
486 B
C#
18 lines
486 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WMS.Web.Core.Dto.TakeStock;
|
|
using WMS.Web.Domain.Entitys;
|
|
|
|
namespace WMS.Web.Domain.Infrastructure
|
|
{
|
|
public interface ITakeStockRepositories
|
|
{
|
|
// 新增
|
|
Task<TakeStock> Add(TakeStock entity, bool isTransaction = true);
|
|
// 获取列表
|
|
Task<(List<TakeStockQueryInfoResponse> list, int total)> GetListAsync(TakeStockQueryRequest dto);
|
|
}
|
|
}
|