18 lines
403 B
Go
18 lines
403 B
Go
|
package dto
|
||
|
|
||
|
type ThirdLoginReq struct {
|
||
|
CorpID uint64 `json:"corpId"` // 企业id
|
||
|
BizId uint64 `json:"bizId"` // 业务id
|
||
|
|
||
|
Account string `json:"account"` // 帐号
|
||
|
|
||
|
Password string `json:"password"` // 密码
|
||
|
}
|
||
|
|
||
|
type ThirdUserLoginToken struct {
|
||
|
CorpId uint64 `json:"corp_id"`
|
||
|
BizId uint64 `json:"biz_id"`
|
||
|
Uid uint64 `json:"uid"`
|
||
|
AccessToken string `json:"accessToken"`
|
||
|
}
|