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