...
|
...
|
@@ -230,6 +230,7 @@ type AppPageGetResponse struct { |
|
|
type AppPageSaveRequest struct {
|
|
|
Name string `json:"name"` // 名称
|
|
|
Charts []int64 `json:"charts"` // 图表
|
|
|
Cover string `json:"cover,optional"` // 封面
|
|
|
}
|
|
|
|
|
|
type AppPageSaveResponse struct {
|
...
|
...
|
@@ -264,8 +265,9 @@ type AppPageDeleteResponse struct { |
|
|
|
|
|
type AppPageUpdateRequest struct {
|
|
|
Id int64 `path:"id"`
|
|
|
Name string `json:"name"` // 名称
|
|
|
Name string `json:"name,optional"` // 名称
|
|
|
Charts []int64 `json:"charts"` // 图表
|
|
|
Cover string `json:"cover,optional"` // 封面
|
|
|
}
|
|
|
|
|
|
type AppPageUpdateResponse struct {
|
...
|
...
|
@@ -284,6 +286,7 @@ type AppPageSearchResponse struct { |
|
|
type AppPageItem struct {
|
|
|
Id int64 `json:"id,optional"` // 唯一标识
|
|
|
Name string `json:"name,optional"` // 名称
|
|
|
Cover string `json:"cover,optional"` // 封面
|
|
|
Charts []AppPageChartItem `json:"charts,optional"` // 图表
|
|
|
}
|
|
|
|
...
|
...
|
@@ -291,6 +294,7 @@ type AppPageChartItem struct { |
|
|
ChartId int64 `json:"chartId"` // 图表ID
|
|
|
Name string `json:"name"` // 图表名称
|
|
|
Cover string `json:"cover"` // 图表封面
|
|
|
ChartType string `json:"chartType,optional"` // 图表类型
|
|
|
}
|
|
|
|
|
|
type GetAppPageShareDetailRequest struct {
|
...
|
...
|
|