Files
PandaX/system/entity/role_dept.go
feilong.teng@rheinchina.com cd824b7f0c 集成完成
2021-12-12 19:49:39 +08:00

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"`
}