gn_index.go 245 B

1234567891011
  1. package response
  2. import (
  3. "eta_gn/eta_bridge/models/gn"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. type GnPageIndexResp struct {
  7. Page *paging.PagingItem `description:"数据分页"`
  8. List []gn.IndexInfo `description:"列表数据"`
  9. }