diff --git a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Notes/TransferNotes/ITransferNoteAppService.cs b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Notes/TransferNotes/ITransferNoteAppService.cs
index 64b8744b3..fc797cf4f 100644
--- a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Notes/TransferNotes/ITransferNoteAppService.cs
+++ b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Notes/TransferNotes/ITransferNoteAppService.cs
@@ -45,4 +45,22 @@ public interface ITransferNoteAppService :
///
///
Task SplitPackingAsync(TransferNoteEditInput transferNoteEditInput);
+
+ ///
+ /// 按条件获取拆箱的分页列表
+ /// request sample
+ /// {
+ /// "maxResultCount": 1000,
+ /// "skipCount": 0,
+ /// "sorting": "",
+ /// "condition": { "filters": []}
+ /// }
+ ///
+ ///
+ ///
+ ///
+ ///
+ Task> GetSplitPackingTransferListAsync(
+ SfsStoreRequestInputBase sfsRequestDTO, bool includeDetails = false,
+ CancellationToken cancellationToken = default);
}