gn_index.go 292 B

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