商品管理ui优化, 后台支持分页参数

This commit is contained in:
yml
2026-06-01 00:56:45 +08:00
parent 4437c3b439
commit aff108fc96
7 changed files with 503 additions and 73 deletions
+9
View File
@@ -54,6 +54,15 @@ type AdminListQuery struct {
Status string
ReviewStatus string
Limit int
Page int
PageSize int
}
type AdminListResult struct {
Items []ListingDTO `json:"items"`
Total int64 `json:"total"`
Page int `json:"page"`
PageSize int `json:"page_size"`
}
type AdminActionRequest struct {