|
@@ -8,12 +8,21 @@ import (
|
|
"github.com/beego/beego/v2/client/orm"
|
|
"github.com/beego/beego/v2/client/orm"
|
|
)
|
|
)
|
|
|
|
|
|
|
|
+type DepartmentType string
|
|
|
|
+
|
|
|
|
+const (
|
|
|
|
+ SubCompany DepartmentType = "sub"
|
|
|
|
+ Department DepartmentType = "department"
|
|
|
|
+)
|
|
|
|
+
|
|
type SysDepartment struct {
|
|
type SysDepartment struct {
|
|
- SysDepartmentId int `orm:"pk" description:"部门id"`
|
|
|
|
- SysDepartmentName string `description:"部门名称"`
|
|
|
|
- Sort int `description:"排序"`
|
|
|
|
- Level int `description:"层级"`
|
|
|
|
- ParentId int `description:"父目录id"`
|
|
|
|
|
|
+ SysDepartmentId int `orm:"pk" description:"部门id"`
|
|
|
|
+ SysDepartmentName string `description:"部门名称"`
|
|
|
|
+ OutId int `gorm:"column:out_id;type:int(11);not null" json:"out_id"`
|
|
|
|
+ Type DepartmentType `gorm:"column:type;type:varchar(50);not null" json:"type"`
|
|
|
|
+ Sort int `description:"排序"`
|
|
|
|
+ Level int `description:"层级"`
|
|
|
|
+ ParentId int `description:"父目录id"`
|
|
}
|
|
}
|
|
|
|
|
|
func (s *SysDepartment) Add() (err error) {
|
|
func (s *SysDepartment) Add() (err error) {
|
|
@@ -31,6 +40,8 @@ func (s *SysDepartment) Update(cols []string) (err error) {
|
|
type SysDepartmentList struct {
|
|
type SysDepartmentList struct {
|
|
SysDepartmentId int `description:"部门id"`
|
|
SysDepartmentId int `description:"部门id"`
|
|
SysDepartmentName string `description:"部门名称"`
|
|
SysDepartmentName string `description:"部门名称"`
|
|
|
|
+ OutId int `gorm:"column:out_id;type:int(11);not null" json:"out_id"`
|
|
|
|
+ Type DepartmentType `gorm:"column:type;type:varchar(50);not null" json:"type"`
|
|
Child []*SysDepartmentList `description:"分组"`
|
|
Child []*SysDepartmentList `description:"分组"`
|
|
Level int `description:"1:部门, 2|3:分组"`
|
|
Level int `description:"1:部门, 2|3:分组"`
|
|
ParentId int `description:"父目录id"`
|
|
ParentId int `description:"父目录id"`
|