20 lines
810 B
Go
20 lines
810 B
Go
|
package models
|
||
|
|
||
|
type SysDept struct {
|
||
|
DeptId int `json:"deptId" gorm:"primaryKey;autoIncrement;"` //部门编码
|
||
|
ParentId int `json:"parentId" gorm:""` //上级部门
|
||
|
DeptPath string `json:"deptPath" gorm:"size:255;"` //
|
||
|
DeptName string `json:"deptName" gorm:"size:128;"` //部门名称
|
||
|
Sort int `json:"sort" gorm:"size:4;"` //排序
|
||
|
Leader string `json:"leader" gorm:"size:128;"` //负责人
|
||
|
Phone string `json:"phone" gorm:"size:11;"` //手机
|
||
|
Email string `json:"email" gorm:"size:64;"` //邮箱
|
||
|
Status int `json:"status" gorm:"size:4;"` //状态
|
||
|
ControlBy
|
||
|
ModelTime
|
||
|
}
|
||
|
|
||
|
func (SysDept) TableName() string {
|
||
|
return "sys_dept"
|
||
|
}
|