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 Add(MoveBoxRecord entity, bool isTransaction = true); } }