修复bug

This commit is contained in:
renzhiyuan 2024-12-30 14:10:46 +08:00
parent 05ececfd51
commit 561e438c8f
1 changed files with 2 additions and 1 deletions

View File

@ -13,10 +13,11 @@ var (
// 实体 // 实体
type CronCmd struct { type CronCmd struct {
CmdId int `xorm:"'cmd_id' UNSIGNED INT pk autoincr""` CmdId int `xorm:"'cmd_id' UNSIGNED INT pk autoincr"`
CmdName string `xorm:"'cmd_name' varchar(20)"` CmdName string `xorm:"'cmd_name' varchar(20)"`
UserIds string `xorm:"'user_ids' varchar(50)"` UserIds string `xorm:"'user_ids' varchar(50)"`
EntryId int `xorm:"'entry_id' int(10)"` EntryId int `xorm:"'entry_id' int(10)"`
IsDynamicUsers int `xorm:"'is_dynamic_users' TINYINT"`
ReadDbId int `xorm:"'read_db_id' int(10)"` ReadDbId int `xorm:"'read_db_id' int(10)"`
WriteDbId int `xorm:"'write_db_id' int(11)"` WriteDbId int `xorm:"'write_db_id' int(11)"`
ExecuteType int `xorm:"'execute_type' TINYINT"` ExecuteType int `xorm:"'execute_type' TINYINT"`