PersonalMain-Golang/internal/model/do/sortDO.go

11 lines
244 B
Go

package do
type SortDO struct {
Id *uint `json:"id"`
Sort *uint `json:"sort"`
UserAble bool `json:"user_able"`
Title string `json:"title"`
Desc *string `json:"desc"`
Blogs *[]BlogDO `json:"blogs"`
}