zhongji_index.go 708 B

123456789101112131415161718
  1. package index_data
  2. // ZhongjiSmmIndexListReq 指标请求体
  3. type ZhongjiSmmIndexListReq struct {
  4. Page int `json:"page" form:"page" description:"页码"`
  5. PageSize int `json:"page_size" form:"page_size" description:"每页指标个数,每页不能超过500条,超过会固定为500"`
  6. }
  7. // ZhongjiSmmIndexListReq 指标请求体
  8. type ZhongjiSmmIndexDataReq struct {
  9. EdbCode string `json:"edb_code" form:"edb_code" description:"Code"`
  10. }
  11. // ZhongjiSmmIndexLatestDataReq 指标请求体
  12. type ZhongjiSmmIndexLatestDataReq struct {
  13. EdbCode string `json:"edb_code" form:"edb_code" description:"Code"`
  14. LastTime int64 `json:"last_time" form:"last_time" description:"上次更新时间戳(秒)"`
  15. }