user_role.go 1.6 KB
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
}