department.go
3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package models
import (
"encoding/json"
"errors"
"fmt"
"oppmg/common/log"
"time"
"github.com/astaxie/beego/orm"
)
type Department struct {
Id int64 `orm:"column(id);auto"`
CompanyId int64 `orm:"column(company_id)" description:"公司id"`
Name string `orm:"column(name);size(30)" description:"部门名称"`
CreateAt time.Time `orm:"column(create_at);type(timestamp)" description:"创建时间"`
ParentId int64 `orm:"column(parent_id)" description:"父级id"`
Relation string `orm:"column(relation);size(1024)" description:"父子级关系树"`
DeleteAt time.Time `orm:"column(delete_at);type(timestamp)" description:"删除时间"`
UpdateAt time.Time `orm:"column(update_at);type(timestamp)" description:"更新时间"`
Member int `orm:"column(member)" description:"成员数量"`
Manages string `orm:"column(managers)" description:"部门负责人id列表 json 数组 []"`
}
func (t *Department) TableName() string {
return "department"
}
func init() {
orm.RegisterModel(new(Department))
}
func (t *Department) GetManagesIds() []int64 {
var r []int64
err := json.Unmarshal([]byte(t.Manages), &r)
if err != nil {
log.Error(err.Error())
}
return r
}
func (t *Department) SetManages(v []int64) {
bt, _ := json.Marshal(v)
t.Manages = string(bt)
return
}
func (t *Department) SetRelation(parent *Department) error {
if t.Id == 0 {
return errors.New("Id==0")
}
if parent == nil {
t.Relation = fmt.Sprintf("%d", t.Id)
} else {
t.Relation = fmt.Sprintf("%s/%d", parent.Relation, t.Id)
}
return nil
}
// AddDepartment insert a new Department into database and returns
// last inserted Id on success.
func AddDepartment(m *Department, om ...orm.Ormer) (id int64, err error) {
var o orm.Ormer
if len(om) > 0 {
o = om[0]
} else {
o = orm.NewOrm()
}
m.DeleteAt = time.Unix(0, 0)
id, err = o.Insert(m)
return
}
// GetDepartmentById retrieves Department by Id. Returns error if
// Id doesn't exist
func GetDepartmentById(id int64) (v *Department, err error) {
o := orm.NewOrm()
v = &Department{Id: id}
if err = o.Read(v); err == nil {
return v, nil
}
return nil, err
}
// UpdateDepartment updates Department by Id and returns error if
// the record to be updated doesn't exist
func UpdateDepartmentById(m *Department, col []string, om ...orm.Ormer) (err error) {
var o orm.Ormer
if len(om) > 0 {
o = om[0]
} else {
o = orm.NewOrm()
}
v := Department{Id: m.Id}
// ascertain id exists in the database
if err = o.Read(&v); err == nil {
var num int64
m.UpdateAt = time.Now()
if num, err = o.Update(m, col...); err == nil {
fmt.Println("Number of records updated in database:", num)
}
}
return
}
func GetDepartmentSubsetByRelation(relation string, om ...orm.Ormer) ([]Department, error) {
dataSql := `SELECT company_id,parent_id,name,create_at,relation,member,managers
FROM department
WHERE relation LIKE ? AND delete_at = 0`
var (
o orm.Ormer
result []Department
err error
)
like := relation + "%"
if len(om) == 0 {
o = orm.NewOrm()
} else {
o = om[0]
}
_, err = o.Raw(dataSql, like).QueryRows(&result)
if err != nil {
return nil, err
}
return result, nil
}
func GetDepartmentByCompanyId(companyId int64) ([]Department, error) {
var (
result []Department
err error
)
o := orm.NewOrm()
_, err = o.QueryTable(&Department{}).
Filter("company_id", companyId).
All(&result)
return result, err
}