书籍列表接口新增参数

This commit is contained in:
2025-08-13 15:19:42 +08:00
parent 6ccc87f2bf
commit 8afe651c64
201 changed files with 6987 additions and 1066 deletions

25
internal/model/system.go Normal file
View File

@ -0,0 +1,25 @@
package model
import "server/internal/model/entity"
type SystemOutput struct {
entity.System
}
type SystemUniqueInput struct {
Key string
Lock
}
type Lock bool
type SystemAdsOutput struct {
Index string `json:"index"`
}
type SystemVersionOutput struct {
Ios map[string]string `json:"ios"`
Android map[string]string `json:"android"`
}
type SystemSaveInput struct {
Key string
Value string
}