app-cloudep-member-server/pkg/domain/usecase/common.go

8 lines
171 B
Go
Raw Normal View History

2024-12-30 03:58:14 +00:00
package usecase
type Pager struct {
Total int64 `json:"total"` // 總數量
Size int64 `json:"size"` // 每頁大小
Index int64 `json:"index"` // 當前頁索引
}