This commit is contained in:
2024-02-21 11:45:10 +07:00
commit 3cc6b026cc
45 changed files with 6677 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
package model
type CommonModel struct {
RuntimePath string
}
type APPModel struct {
LogPath string
LogSaveName string
LogFileExt string
UserDataPath string
DBPath string
}
type Result struct {
Success int `json:"success" example:"200"`
Message string `json:"message" example:"ok"`
Data interface{} `json:"data" example:"返回结果"`
}