Initial commit

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-15 13:57:10 +08:00
co-authored by Claude Opus 5
commit 8679200f41
1897 changed files with 257900 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package jingangmod
import (
"go.mongodb.org/mongo-driver/bson/primitive"
)
type JGModel struct {
ID primitive.ObjectID `json:"id" bson:"_id,omitempty"` // ID
Name string `json:"name" bson:"name"` // 名称
Img string `json:"img" bson:"img"` // 图片地址
Desc string `json:"desc" bson:"desc"` // 说明
LinkType int64 `json:"link_type" bson:"link_type"` // 链接类型 1 内部链接; 2 外部连接
LinkUrl string `json:"link_url" bson:"link_url"` // 链接地址
Mid primitive.ObjectID `json:"mid" bson:"mid"` // 所属模块
}