This commit is contained in:
aozhiwei 2024-06-15 14:14:49 +08:00
parent 6526651a65
commit 9776811b88
2 changed files with 20 additions and 1 deletions

View File

@ -59,5 +59,9 @@ WHERE A.idx > %d AND A.net_id = %d AND A.owner_address=? LIMIT %d`,
p.ContractAddress = ds.GetByName("contract_address")
p.TokenId = ds.GetByName("token_id")
})
f5.GetSysLog().Info("dafdf")
rspObj := struct {
Page *common.StreamPagination `json:"page"`
Rows []interface{} `json:"rows"`
}{}
c.JSON(200, rspObj)
}

View File

@ -1,6 +1,8 @@
package common
import (
"q5"
"f5"
)
type NftHomeMeta struct {
@ -34,6 +36,12 @@ type OrderUpdatedEvent struct {
} `json:"data"`
}
type StreamPagination struct {
NextCursor string `json:"next_cursor"`
PreviousCursor string `json:"previous_cursor"`
Remaining int32 `json:"remaining"`
}
type NftCache interface {
}
@ -57,3 +65,10 @@ type TaskMgr interface{
type CacheMgr interface{
}
func (this* StreamPagination) FillPage(page *f5.StreamPagination) {
this.NextCursor = q5.ToString(page.NextCursor)
this.PreviousCursor = q5.ToString(page.PreviousCursor)
this.Remaining = page.Remaining
}