| 1234567891011121314151617181920212223242526272829303132333435 |
- package models
- import (
- "time"
- //__import_packages__
- )
- type SysPermission struct {
- //主键
- Id string `xorm:"'id' varchar(36) pk notnull "json:"id"`
- //权限标识
- Perms string `xorm:"'perms' varchar(100) notnull "json:"perms"`
- //域
- Domain string `xorm:"'domain' notnull "json:"domain"`
- //创建人
- CreateBy string `xorm:"'create_by' varchar(36) notnull "json:"create_by"`
- //创建时间
- CreateTime time.Time `xorm:"'create_time' notnull "json:"create_time"`
- //最后更新人
- LastUpdateBy string `xorm:"'last_update_by' varchar(36) notnull "json:"last_update_by"`
- //最后更新时间
- LastUpdateTime int64 `xorm:"'last_update_time' notnull "json:"last_update_time"`
- //是否删除 1:删除 0:正常
- DelFlag int32 `xorm:"'del_flag' notnull "json:"del_flag"`
- }
- func (t *SysPermission) TableName() string {
- return "sys_permission"
- }
- func init() {
- AddTableName("sys_permission")
- RegisterModel(new(SysPermission))
- }
|