12345678910 |
- package response
- import "eta/eta_api/models/data_manage"
- // ChartPreviewResp
- // @Description: 图表预览返回
- type ChartPreviewResp struct {
- EdbInfoList []*data_manage.ChartEdbInfoMapping
- DataResp interface{} `description:"图表数据,根据图的类型而定的,没有确定的数据格式"`
- }
|