diff --git a/core/entity/sys_config.go b/core/entity/sys_config.go index c070da8..1c42be6 100644 --- a/core/entity/sys_config.go +++ b/core/entity/sys_config.go @@ -13,7 +13,7 @@ type SysConfig struct { CreateBy string `xorm:"varchar(64)" json:"createBy"` // 创建人 CreateTime time.Time `xorm:"created" json:"createTime"` // 创建时间 UpdateBy string `xorm:"varchar(64)" json:"updateBy"` // 更新人 - UpdateTime time.Time `json:"updateTime"` // 更新时间 + UpdateTime time.Time `xorm:"updated" json:"updateTime"` // 更新时间 Remark string `xorm:"varchar(500)" json:"remark"` // 备注 } diff --git a/core/entity/sys_cron_job.go b/core/entity/sys_cron_job.go index cd21c7e..617447b 100644 --- a/core/entity/sys_cron_job.go +++ b/core/entity/sys_cron_job.go @@ -14,7 +14,7 @@ type SysCronJob struct { CreateBy string `xorm:"varchar(64)"` // 创建人 CreateTime time.Time `xorm:"created"` // 创建时间 UpdateBy string `xorm:"varchar(64)"` // 更新人 - UpdateTime time.Time `xorm:"datetime"` // 更新时间 + UpdateTime time.Time `xorm:"updated"` // 更新时间 Remark string `xorm:"varchar(500)" json:"remark"` // 备注 } diff --git a/core/entity/sys_dept.go b/core/entity/sys_dept.go index 8e9d497..9c7a779 100644 --- a/core/entity/sys_dept.go +++ b/core/entity/sys_dept.go @@ -16,7 +16,7 @@ type SysDept struct { DelFlag string `xorm:"char(1) default('0')" json:"delFlag"` CreateTime time.Time `xorm:"created" json:"createTime"` // 创建时间 CreateBy string `json:"createBy"` // 创建人 - UpdateTime time.Time `json:"updateTime"` // 更新时间 + UpdateTime time.Time `xorm:"updated" json:"updateTime"` // 更新时间 UpdateBy string `json:"updateBy"` // 更新人 } diff --git a/core/entity/sys_dict_data.go b/core/entity/sys_dict_data.go index 2c5934c..c7e625e 100644 --- a/core/entity/sys_dict_data.go +++ b/core/entity/sys_dict_data.go @@ -16,7 +16,7 @@ type SysDictData struct { Remark string `xorm:"varchar(512)" json:"remark"` // 备注 CreateTime time.Time `xorm:"created" json:"createTime"` // 创建时间 CreateBy string `json:"createBy"` // 创建人 - UpdateTime time.Time `json:"updateTime"` // 更新时间 + UpdateTime time.Time `xorm:"updated" json:"updateTime"` // 更新时间 UpdateBy string `json:"updateBy"` // 更新人 } diff --git a/core/entity/sys_dict_type.go b/core/entity/sys_dict_type.go index 3879c63..6ec4380 100644 --- a/core/entity/sys_dict_type.go +++ b/core/entity/sys_dict_type.go @@ -13,7 +13,7 @@ type SysDictType struct { Remark string `xorm:"varchar(512)" json:"remark"` // 备注 CreateTime time.Time `xorm:"created" json:"createTime"` // 创建时间 CreateBy string `json:"createBy"` // 创建人 - UpdateTime time.Time `json:"updateTime"` // 更新时间 + UpdateTime time.Time `xorm:"updated" json:"updateTime"` // 更新时间 UpdateBy string `json:"updateBy"` // 更新人 } diff --git a/core/entity/sys_menu.go b/core/entity/sys_menu.go index a4656f5..04504cd 100644 --- a/core/entity/sys_menu.go +++ b/core/entity/sys_menu.go @@ -21,7 +21,7 @@ type SysMenu struct { Remark string `xorm:"varchar(512)" json:"remark"` // 备注 CreateTime time.Time `xorm:"created" json:"createTime"` // 创建时间 CreateBy string `json:"createBy"` // 创建人 - UpdateTime time.Time `json:"updateTime"` // 更新时间 + UpdateTime time.Time `xorm:"updated" json:"updateTime"` // 更新时间 UpdateBy string `json:"updateBy"` // 更新人 Status string `xorm:"char(1)" json:"status"` // 菜单状态(0正常 1停用) Component string `xorm:"varchar(255)" json:"component"` // 组件路径 diff --git a/core/entity/sys_notice.go b/core/entity/sys_notice.go index 2005fe6..4982bda 100644 --- a/core/entity/sys_notice.go +++ b/core/entity/sys_notice.go @@ -11,7 +11,7 @@ type SysNotice struct { CreateBy string `xorm:"varchar(64)" json:"createBy"` // 创建人 CreateTime time.Time `xorm:"created" json:"createTime"` // 创建时间 UpdateBy string `xorm:"varchar(64)" json:"updateBy"` // 更新人 - UpdateTime time.Time `json:"updateTime"` // 更新时间 + UpdateTime time.Time `xorm:"updated" json:"updateTime"` // 更新时间 Remark string `xorm:"varchar(500)" json:"remark"` // 备注 } diff --git a/core/entity/sys_post.go b/core/entity/sys_post.go index e823c1d..1f7f657 100644 --- a/core/entity/sys_post.go +++ b/core/entity/sys_post.go @@ -12,7 +12,7 @@ type SysPost struct { Remark string `xorm:"varchar(512)" json:"remark"` // 备注 CreateTime time.Time `xorm:"created" json:"createTime"` // 创建时间 CreateBy string `json:"createBy"` // 创建人 - UpdateTime time.Time `json:"updateTime"` // 更新时间 + UpdateTime time.Time `xorm:"updated" json:"updateTime"` // 更新时间 UpdateBy string `json:"updateBy"` // 更新人 } diff --git a/core/entity/sys_role.go b/core/entity/sys_role.go index 7a767aa..d1f95db 100644 --- a/core/entity/sys_role.go +++ b/core/entity/sys_role.go @@ -14,7 +14,7 @@ type SysRole struct { DelFlag string `excel:"" xorm:"char(1)" json:"delFlag"` // 删除标记0正常1删除 CreateTime time.Time `excel:"" xorm:"created" json:"createTime"` // 创建时间 CreateBy string `excel:"" json:"createBy"` // 创建人 - UpdateTime time.Time `excel:"" json:"updateTime"` // 更新时间 + UpdateTime time.Time `excel:"" xorm:"updated" json:"updateTime"` // 更新时间 UpdateBy string `excel:"" json:"updateBy"` // 更新人 Remark string `excel:"" json:"remark"` // 备注 MenuIds []int64 `xorm:"-" json:"menuIds"` // 菜单组 diff --git a/core/entity/sys_user.go b/core/entity/sys_user.go index c1500a3..c4ef882 100644 --- a/core/entity/sys_user.go +++ b/core/entity/sys_user.go @@ -22,7 +22,7 @@ type SysUser struct { LoginDate time.Time `json:"loginDate"` // 登录时间 CreateTime time.Time `xorm:"created" json:"createTime"` // 创建时间 CreateBy string `json:"createBy"` // 创建人 - UpdateTime time.Time `json:"updateTime"` // 更新时间 + UpdateTime time.Time `xorm:"updated" json:"updateTime"` // 更新时间 UpdateBy string `json:"updateBy"` // 更新人 }