15 lines
334 B
C#
15 lines
334 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 IMoveBoxRecordRepositories
|
|
{
|
|
// 新增
|
|
Task<MoveBoxRecord> Add(MoveBoxRecord entity, bool isTransaction = true);
|
|
}
|
|
}
|