jiayue_index.go 520 B

12345678910
  1. package index_data
  2. // JiaYuePageIndexReq 指标列表请求体-分页
  3. type JiaYuePageIndexReq struct {
  4. SourceExtend string `json:"source_extend" form:"source_extend" description:"来源"`
  5. Keyword string `json:"keyword" form:"keyword" description:"关键词"`
  6. Frequency string `json:"frequency" form:"frequency" description:"频度"`
  7. PageIndex int `json:"page_index" form:"page_index" description:"当前页码"`
  8. PageSize int `json:"page_size" form:"page_size" description:"每页数据量"`
  9. }