11 lines
191 B
Go
11 lines
191 B
Go
|
package models
|
||
|
|
||
|
type SysRoleDept struct {
|
||
|
RoleId int `gorm:"size:11;primaryKey"`
|
||
|
DeptId int `gorm:"size:11;primaryKey"`
|
||
|
}
|
||
|
|
||
|
func (SysRoleDept) TableName() string {
|
||
|
return "sys_role_dept"
|
||
|
}
|