自动更新时间
This commit is contained in:
parent
12473fd656
commit
438d727b2d
|
@ -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"` // 备注
|
||||
}
|
||||
|
||||
|
|
|
@ -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"` // 备注
|
||||
}
|
||||
|
||||
|
|
|
@ -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"` // 更新人
|
||||
}
|
||||
|
||||
|
|
|
@ -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"` // 更新人
|
||||
}
|
||||
|
||||
|
|
|
@ -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"` // 更新人
|
||||
}
|
||||
|
||||
|
|
|
@ -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"` // 组件路径
|
||||
|
|
|
@ -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"` // 备注
|
||||
}
|
||||
|
||||
|
|
|
@ -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"` // 更新人
|
||||
}
|
||||
|
||||
|
|
|
@ -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"` // 菜单组
|
||||
|
|
|
@ -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"` // 更新人
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue