8 lines
171 B
Go
8 lines
171 B
Go
|
package usecase
|
||
|
|
||
|
type Pager struct {
|
||
|
Total int64 `json:"total"` // 總數量
|
||
|
Size int64 `json:"size"` // 每頁大小
|
||
|
Index int64 `json:"index"` // 當前頁索引
|
||
|
}
|