business_data.go 720 B

1234567891011121314151617
  1. package request
  2. // BusinessDataListReq 指标列表筛选
  3. type BusinessDataListReq struct {
  4. PageSize int `form:"PageSize"`
  5. CurrentIndex int `form:"CurrentIndex"`
  6. Frequency string `form:"Frequency" description:"频度"`
  7. Source int `form:"Source" description:"来源id"`
  8. Keywords string `form:"Keywords" description:"指标ID/指标名称"`
  9. ListAll bool `form:"ListAll" description:"列表全选"`
  10. }
  11. // BusinessDataBatchAddCheckReq 外部(商家)指标批量添加校验
  12. type BusinessDataBatchAddCheckReq struct {
  13. BusinessDataListReq
  14. IndexCodes []string `form:"IndexCodes" description:"全选为false时, 该数组为选中; 全选为true时, 该数组为不选的指标"`
  15. }