13 lines
253 B
Go
13 lines
253 B
Go
|
package dto
|
||
|
|
||
|
type PageCategoryReqDto struct {
|
||
|
PageQueryDto
|
||
|
Name string `json:"name" form:"name"`
|
||
|
}
|
||
|
|
||
|
type CategoryDto struct {
|
||
|
Id int `json:"id" form:"id"`
|
||
|
Name string `json:"name" form:"name"`
|
||
|
Config string `json:"config" form:"config"`
|
||
|
}
|