🆕 新增指令插件,新增雷神加速器操作指令

This commit is contained in:
李寻欢
2023-12-20 15:42:50 +08:00
parent c40dbead3e
commit 5a1ede0646
8 changed files with 541 additions and 0 deletions

13
entity/plugindata.go Normal file
View File

@@ -0,0 +1,13 @@
package entity
// PluginData
// @description: 插件数据
type PluginData struct {
UserId string `json:"userId"` // 用户Id
PluginCode string `json:"pluginCode"` // 插件编码
Data string `json:"data"` // 数据
}
func (PluginData) TableName() string {
return "t_plugin_data"
}