|
@@ -8,7 +8,7 @@ import (
|
|
type SysDepartment struct {
|
|
type SysDepartment struct {
|
|
DepartmentId int `gorm:"primaryKey;column:department_id;type:int(11);not null" json:"department_id"`
|
|
DepartmentId int `gorm:"primaryKey;column:department_id;type:int(11);not null" json:"department_id"`
|
|
DepartmentName string `gorm:"unique;column:department_name;type:varchar(255);default:''" json:"department_name"` // 部门名称
|
|
DepartmentName string `gorm:"unique;column:department_name;type:varchar(255);default:''" json:"department_name"` // 部门名称
|
|
- OutID string `gorm:"column:out_id" json:"outId"` // 外部id
|
|
|
|
|
|
+ OutID string `gorm:"column:out_id" json:"out_id"` // 外部id
|
|
CreateTime time.Time `gorm:"column:create_time;type:datetime" json:"create_time"` // 创建时间
|
|
CreateTime time.Time `gorm:"column:create_time;type:datetime" json:"create_time"` // 创建时间
|
|
Sort int `gorm:"column:sort;type:int(10);not null;default:0" json:"sort"` // 排序
|
|
Sort int `gorm:"column:sort;type:int(10);not null;default:0" json:"sort"` // 排序
|
|
}
|
|
}
|