1234567891011121314151617 |
- package request
- // BusinessDataListReq 指标列表筛选
- type BusinessDataListReq struct {
- PageSize int `form:"PageSize"`
- CurrentIndex int `form:"CurrentIndex"`
- Frequency string `form:"Frequency" description:"频度"`
- Source int `form:"Source" description:"来源id"`
- Keywords string `form:"Keywords" description:"指标ID/指标名称"`
- ListAll bool `form:"ListAll" description:"列表全选"`
- }
- // BusinessDataBatchAddCheckReq 外部(商家)指标批量添加校验
- type BusinessDataBatchAddCheckReq struct {
- BusinessDataListReq
- IndexCodes []string `form:"IndexCodes" description:"全选为false时, 该数组为选中; 全选为true时, 该数组为不选的指标"`
- }
|