mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 02:48:34 +08:00
8 lines
196 B
Go
8 lines
196 B
Go
package entity
|
|
|
|
type SysRoleDept struct {
|
|
RoleId int64 `gorm:"type:int(11)"`
|
|
DeptId int64 `gorm:"type:int(11)"`
|
|
Id int64 `gorm:"primary_key;AUTO_INCREMENT;column:id" json:"id" form:"id"`
|
|
}
|