12345678910111213141516171819 |
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- package model
- const TableNameSysAccess = "sys_access"
- // SysAccess mapped from table <sys_access>
- type SysAccess struct {
- ID int32 `gorm:"column:id;primaryKey;autoIncrement:true" json:"id"`
- Usrid int32 `gorm:"column:usrid" json:"usrid"` // 用户id
- Appid int32 `gorm:"column:appid" json:"appid"` // appid
- }
- // TableName SysAccess's table name
- func (*SysAccess) TableName() string {
- return TableNameSysAccess
- }
|