fix(knowledge): Fix the issue of ineffective pagination parameters in the image-based knowledge base (#831)

This commit is contained in:
liuyunchao-1998
2025-08-20 17:49:38 +08:00
committed by GitHub
parent f956c18a09
commit e7070b419c
6 changed files with 168 additions and 59 deletions

View File

@@ -27,8 +27,15 @@ type WhereSliceOpt struct {
DocumentID int64
DocumentIDs []int64
Keyword *string
Sequence int64
PageSize int64
Offset int64
NotEmpty *bool
}
type WherePhotoSliceOpt struct {
KnowledgeID int64
DocumentIDs []int64
Limit *int
Offset *int
HasCaption *bool
}