123456789101112131415161718 |
- package index_data
- // ZhongjiSmmIndexListReq 指标请求体
- type ZhongjiSmmIndexListReq struct {
- Page int `json:"page" form:"page" description:"页码"`
- PageSize int `json:"page_size" form:"page_size" description:"每页指标个数,每页不能超过500条,超过会固定为500"`
- }
- // ZhongjiSmmIndexListReq 指标请求体
- type ZhongjiSmmIndexDataReq struct {
- EdbCode string `json:"edb_code" form:"edb_code" description:"Code"`
- }
- // ZhongjiSmmIndexLatestDataReq 指标请求体
- type ZhongjiSmmIndexLatestDataReq struct {
- EdbCode string `json:"edb_code" form:"edb_code" description:"Code"`
- LastTime int64 `json:"last_time" form:"last_time" description:"上次更新时间戳(秒)"`
- }
|