using Admin.Core.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.Core.IService { public interface IRecordOutStoreServices : IBaseServices { /// /// 添加出库记录 /// /// /// Task InsertReocrdOutStoreService(RecordOutStore recordOutstore); } }