...
|
...
|
@@ -18,9 +18,6 @@ service Core { |
|
|
@handler miniUserApplyJoinCompany
|
|
|
post /mini/user/apply_join_company(MiniUserApplyJoinCompanyRequest) returns (MiniUserApplyJoinCompanyResponse)
|
|
|
@doc "用户登录"
|
|
|
@handler miniUserWXLogin
|
|
|
post /mini/user/wx-login (MiniUserLoginRequest) returns (MiniUserLoginResponse)
|
|
|
@doc "用户登录"
|
|
|
@handler miniUserLogin
|
|
|
post /mini/user/login (MiniUserLoginRequest) returns (MiniUserLoginResponse)
|
|
|
}
|
...
|
...
|
@@ -78,16 +75,6 @@ service Core { |
|
|
}
|
|
|
|
|
|
type(
|
|
|
MiniUserWXLoginRequest {
|
|
|
Code string `json:"code"` // 授权码
|
|
|
}
|
|
|
MiniUserLoginResponse {
|
|
|
SessionKey string `json:"sessionKey"`
|
|
|
OpenId string `json:"openId"`
|
|
|
}
|
|
|
)
|
|
|
|
|
|
type(
|
|
|
MiniUserLoginRequest {
|
|
|
LoginType string `json:"loginType"` // 登录类型 wechat-login whchat-phone-login phone-password-login phone-smscode-login
|
|
|
WechatAuthCode string `json:"wechatAuthcode,optional"` // 微信登录 授权码
|
...
|
...
|
@@ -104,7 +91,7 @@ type( |
|
|
Success bool `json:"success"` // 成功标识
|
|
|
}
|
|
|
MiniUserSwitchAccountRequest{
|
|
|
CompanyId int64 `json:"companyId"`
|
|
|
CompanyId int64 `json:"companyId,string"`
|
|
|
}
|
|
|
|
|
|
MiniUserInfoRequest {
|
...
|
...
|
@@ -170,7 +157,7 @@ type( |
|
|
|
|
|
UserItem {
|
|
|
Id int64 `json:"id,omitempty"` // 用户ID
|
|
|
CompanyId int64 `json:"companyId,omitempty"` // 公司ID
|
|
|
CompanyId int64 `json:"companyId,string,omitempty"` // 公司ID
|
|
|
CompanyName string `json:"companyName,omitempty"` // 公司名称
|
|
|
CompanyCode string `json:"companyCode,omitempty"` // 公司编码(邀请码)
|
|
|
CompanyLogo *string `json:"companyLogo,omitempty"` // 公司LOGO
|
...
|
...
|
@@ -189,7 +176,7 @@ type( |
|
|
AccountFrom string `json:"accountFrom,omitempty"` // 账号来源 后台新增、扫码注册
|
|
|
}
|
|
|
Account {
|
|
|
CompanyId int64 `json:"companyId"` // 公司ID
|
|
|
CompanyId int64 `json:"companyId,string"` // 公司ID
|
|
|
CompanyName string `json:"companyName"` // 公司名称
|
|
|
Logo string `json:"logo"` // 公司图标
|
|
|
UserId int64 `json:"userId"` // 用户ID
|
...
|
...
|
|