|
|
@ -152,6 +152,7 @@ type UserResponse struct { |
|
|
|
Type *string `protobuf:"bytes,13,opt,name=type" json:"type,omitempty"` |
|
|
|
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"` |
|
|
|
XXX_unrecognized []byte `json:"-"` |
|
|
|
} |
|
|
|
|
|
|
@ -264,6 +265,13 @@ func (m *UserResponse) GetPlatform() string { |
|
|
|
return "" |
|
|
|
} |
|
|
|
|
|
|
|
func (m *UserResponse) GetLockFans() string { |
|
|
|
if m != nil && m.LockFans != nil { |
|
|
|
return *m.LockFans |
|
|
|
} |
|
|
|
return "" |
|
|
|
} |
|
|
|
|
|
|
|
// 用户登录请求结构
|
|
|
|
type LoginRequest struct { |
|
|
|
Dbname *string `protobuf:"bytes,1,opt,name=dbname" json:"dbname,omitempty"` |
|
|
|