🎨 新增后台海报管理相关接口

This commit is contained in:
2023-12-11 18:55:52 +08:00
parent 8d71e58734
commit c804986a68
4 changed files with 190 additions and 0 deletions

9
model/common/poster.go Normal file
View File

@@ -0,0 +1,9 @@
package common
import "miniapp/global"
type Poster struct {
global.GVA_MODEL
Url string `json:"url" gorm:"comment:海报地址"`
Remark string `json:"remark" gorm:"comment:备注"`
}