24 lines
667 B
Go
24 lines
667 B
Go
package response
|
|
|
|
// CategoryResponse 分类响应
|
|
type CategoryResponse struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Icon string `json:"icon"`
|
|
CoverUrl string `json:"coverUrl"`
|
|
Sort int `json:"sort"`
|
|
Status int `json:"status"`
|
|
}
|
|
|
|
// CategoryDetailResponse 分类详情响应
|
|
type CategoryDetailResponse struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Icon string `json:"icon"`
|
|
CoverUrl string `json:"coverUrl"`
|
|
Sort int `json:"sort"`
|
|
Status int `json:"status"`
|
|
}
|