11 lines
244 B
Go
11 lines
244 B
Go
package model
|
|
|
|
type UserDepartmentRef struct {
|
|
UserId string `gorm:"type:varchar(36);primaryKey"`
|
|
DepartmentId string `gorm:"type:varchar(36);primaryKey"`
|
|
}
|
|
|
|
func (r *UserDepartmentRef) TableName() string {
|
|
return "user_departments"
|
|
}
|