Files
WMS-Api/src/WMS.Web.Domain/Infrastructure/IOutStockTaskRepositories.cs
18942506660 404819d101 新增
2023-10-26 14:19:28 +08:00

15 lines
331 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using WMS.Web.Domain.Entitys;
namespace WMS.Web.Domain.Infrastructure
{
public interface IOutStockTaskRepositories
{
// 新增
Task<OutStockTask> Add(OutStockTask entity, bool isTransaction = true);
}
}