This commit is contained in:
孟帅
2025-10-25 00:35:30 +08:00
parent 5ebc33f28b
commit 7313d22cdb
168 changed files with 2349 additions and 1455 deletions

View File

@@ -12,19 +12,19 @@ import (
// AdminCreditsLog is the golang structure of table hg_admin_credits_log for DAO operations like Where/Data.
type AdminCreditsLog struct {
g.Meta `orm:"table:hg_admin_credits_log, do:true"`
Id interface{} // 变动ID
MemberId interface{} // 管理员ID
AppId interface{} // 应用id
AddonsName interface{} // 插件名称
CreditType interface{} // 变动类型
CreditGroup interface{} // 变动组别
BeforeNum interface{} // 变动前
Num interface{} // 变动数据
AfterNum interface{} // 变动后
Remark interface{} // 备注
Ip interface{} // 操作人IP
MapId interface{} // 关联ID
Status interface{} // 状态
Id any // 变动ID
MemberId any // 管理员ID
AppId any // 应用id
AddonsName any // 插件名称
CreditType any // 变动类型
CreditGroup any // 变动组别
BeforeNum any // 变动前
Num any // 变动数据
AfterNum any // 变动后
Remark any // 备注
Ip any // 操作人IP
MapId any // 关联ID
Status any // 状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 修改时间
}