user_role.go
1.6 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
package models
import (
"fmt"
"github.com/astaxie/beego/orm"
)
type UserRole struct {
Id int `orm:"column(id)"`
RoleId int64 `orm:"column(role_id)"`
EnableStatus int8 `orm:"column(enable_status)" description:"是否有效"`
CompanyId int64 `orm:"column(company_id)" description:"表company.id 公司编号"`
UserCompanyId int64 `orm:"column(user_company_id)"`
}
func (t *UserRole) TableName() string {
return "user_role"
}
//EnableStatus 是否有效
const (
USER_ROLE_ENABLE_YES int8 = 1 //有效
USER_ROLE_ENABLE_NO int8 = 2 //无效
)
func (t *UserRole) IsEnable() bool {
switch t.EnableStatus {
case USER_ROLE_ENABLE_YES:
return true
case USER_ROLE_ENABLE_NO:
return false
}
return false
}
func (t *UserRole) ValidCompanyRole() error {
depart, err := GetRoleById(t.RoleId)
if err != nil {
return err
}
if depart.CompanyId != t.CompanyId {
e := fmt.Errorf("role.CompanyId != param.CompanyId ")
return e
}
return nil
}
func init() {
orm.RegisterModel(new(UserRole))
}
// AddUserRole insert a new UserRole into database and returns
// last inserted Id on success.
func AddUserRole(m *UserRole, om ...orm.Ormer) (id int64, err error) {
var o orm.Ormer
if len(om) == 0 {
o = om[0]
} else {
o = orm.NewOrm()
}
m.EnableStatus = USER_ROLE_ENABLE_YES
id, err = o.Insert(m)
return
}
func CountUserRoleByRole(roleid int64) (int64, error) {
var (
cnt int64
err error
)
o := orm.NewOrm()
cnt, err = o.QueryTable(&UserRole{}).
Filter("role_id", roleid).
Filter("enable_status", 1).
Count()
return cnt, err
}