完善功能

This commit is contained in:
2025-07-16 15:16:40 +08:00
parent b2871ec0d2
commit f68a5b360b
123 changed files with 4643 additions and 931 deletions

View File

@ -3,17 +3,17 @@ package model
import "github.com/gogf/gf/v2/frame/g"
type Category struct {
g.Meta `orm:"table:categories"`
Id int64 `json:"id" orm:"id"` // 分类ID
Name string `json:"name" orm:"name"` // 分类名称
Type int `json:type orm:"type"` // 类型1 男频2 女频
g.Meta `orm:"table:categories"`
Id int64 `json:"id" orm:"id"`
Name string `json:"name" orm:"name"`
Channel int `json:"channel" orm:"channel"`
}
type CategoryListIn struct {
Page int
Size int
Name string
Type int
Page int
Size int
Name string
Channel int
}
type CategoryListOut struct {
Total int
@ -21,16 +21,16 @@ type CategoryListOut struct {
}
type CategoryAddIn struct {
Name string
Type int // 类型1 男频2 女频
Name string
Channel int
}
type CategoryEditIn struct {
Id int
Name string
Type int // 类型1 男频2 女频
Id int64
Name string
Channel int
}
type CategoryDelIn struct {
Id int
Id int64
}
type CategoryCRUDOut struct {