ldap-1-backend/model/response/base_rsp.go

10 lines
221 B
Go
Raw Normal View History

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"`
Path string `json:"path"`
2022-05-18 17:57:03 +08:00
}