2022-05-18 17:57:03 +08:00
|
|
|
package response
|
|
|
|
|
|
|
|
type DashboardList struct {
|
|
|
|
DataType string `json:"dataType"`
|
|
|
|
DataName string `json:"dataName"`
|
|
|
|
DataCount int64 `json:"dataCount"`
|
|
|
|
Icon string `json:"icon"`
|
2023-02-08 15:31:44 +08:00
|
|
|
Path string `json:"path"`
|
2022-05-18 17:57:03 +08:00
|
|
|
}
|