|
|
@ -153,6 +153,8 @@ type UserResponse struct { |
|
|
|
ThirdId *string `protobuf:"bytes,14,opt,name=third_id" json:"third_id,omitempty"` |
|
|
|
Platform *string `protobuf:"bytes,15,opt,name=platform" json:"platform,omitempty"` |
|
|
|
LockFans *string `protobuf:"bytes,16,opt,name=lock_fans" json:"lock_fans,omitempty"` |
|
|
|
CompanyId *string `protobuf:"bytes,17,opt,name=company_id" json:"company_id,omitempty"` |
|
|
|
DepartmentId *string `protobuf:"bytes,18,opt,name=department_id" json:"department_id,omitempty"` |
|
|
|
XXX_unrecognized []byte `json:"-"` |
|
|
|
} |
|
|
|
|
|
|
@ -272,6 +274,20 @@ func (m *UserResponse) GetLockFans() string { |
|
|
|
return "" |
|
|
|
} |
|
|
|
|
|
|
|
func (m *UserResponse) GetCompanyId() string { |
|
|
|
if m != nil && m.CompanyId != nil { |
|
|
|
return *m.CompanyId |
|
|
|
} |
|
|
|
return "" |
|
|
|
} |
|
|
|
|
|
|
|
func (m *UserResponse) GetDepartmentId() string { |
|
|
|
if m != nil && m.DepartmentId != nil { |
|
|
|
return *m.DepartmentId |
|
|
|
} |
|
|
|
return "" |
|
|
|
} |
|
|
|
|
|
|
|
// 用户登录请求结构
|
|
|
|
type LoginRequest struct { |
|
|
|
Dbname *string `protobuf:"bytes,1,opt,name=dbname" json:"dbname,omitempty"` |
|
|
|