8 lines
169 B
Go
8 lines
169 B
Go
package db
|
|
|
|
type Pagination struct {
|
|
Offset string `json:"offset"`
|
|
OffsetID int64 `json:"-"`
|
|
Action int `json:"action"` // action: 0 :加载更多 1:刷新
|
|
}
|