...
|
...
|
@@ -112,6 +112,7 @@ type UserListItem struct { |
|
|
Positions string `json:"positions" orm:"-"`
|
|
|
Roles string `json:"roles" orm:"-"`
|
|
|
Departments string `json:"departments" orm:"-"`
|
|
|
Phone string `json:"phone" orm:"column(phone)"`
|
|
|
Enable int8 `json:"enable" orm:"column(enable)"`
|
|
|
}
|
|
|
|
...
|
...
|
@@ -123,16 +124,15 @@ type ResponseCompanyBase struct { |
|
|
|
|
|
//CenterCompanyInfo 统一用户中心调用的公司数据
|
|
|
type CenterCompanyInfo struct {
|
|
|
CompanyId int64 `json:"company_id"` //总后台的公司id
|
|
|
CompanyName string `json:"company_name"` //
|
|
|
// AdminId int64 `json:"admin_id"` //统一用户中心的用户id
|
|
|
CompanyId int64 `json:"company_id"` //总后台的公司id
|
|
|
CompanyName string `json:"company_name"` //
|
|
|
AdminAccount string `json:"admin_account"`
|
|
|
AdminName string `json:"admin_name"`
|
|
|
Status int8 `json:"status"` //公司的状态 【1:启用】【2:禁用】
|
|
|
}
|
|
|
|
|
|
func (c CenterCompanyInfo) IsEnable() bool {
|
|
|
if c.Status == 1 || c.Status == 0 {
|
|
|
if c.Status == 1 {
|
|
|
return true
|
|
|
}
|
|
|
return false
|
...
|
...
|
|