初始化项目

This commit is contained in:
BBIT-Kai
2026-05-26 11:51:57 +08:00
commit 6878f4ea5f
15 changed files with 4258 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
package model
type BaseResponse struct {
Status bool `json:"status"` // 是否成功
Message string `json:"message"` // 提示信息
Data interface{} `json:"data,omitempty"` // 泛型数据,用 interface{} 接收任意类型
}