This commit is contained in:
18942506660
2023-10-26 14:19:18 +08:00
parent 52c0f475d3
commit 404819d101
10 changed files with 201 additions and 1 deletions

View File

@@ -1,10 +1,14 @@
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 IChangeBoxRecordRepositories
{
// 新增
Task<ChangeBoxRecord> Add(ChangeBoxRecord entity, bool isTransaction = true);
}
}

View File

@@ -1,10 +1,14 @@
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 IMoveBoxRecordRepositories
{
// 新增
Task<MoveBoxRecord> Add(MoveBoxRecord entity, bool isTransaction = true);
}
}

View File

@@ -1,10 +1,14 @@
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 IOutStockRepositories
{
// 新增
Task<OutStock> Add(OutStock entity, bool isTransaction = true);
}
}

View File

@@ -1,10 +1,14 @@
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);
}
}

View File

@@ -1,10 +1,14 @@
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 ITakeStockRepositories
{
// 新增
Task<TakeStock> Add(TakeStock entity, bool isTransaction = true);
}
}