新设计

This commit is contained in:
eson
2023-05-31 18:33:02 +08:00
parent 12986049ef
commit f7d547de59
14 changed files with 764 additions and 11 deletions

View File

@@ -0,0 +1,18 @@
// Code generated by goctl. DO NOT EDIT.
package types
type Request struct {
Name string `form:"name"` // parameters are auto validated
}
type FsFonts struct {
Title string `json:"title" gorm:"column:title"`
LinuxFontname string `json:"linux_fontname" gorm:"column:linux_fontname"`
Link string `json:"link" gorm:"link"`
}
type Response struct {
Code int `json:"code"`
Message string `json:"msg"`
Data interface{} `json:"data"`
}