17 lines
308 B
Go
17 lines
308 B
Go
package front
|
|
|
|
type UnionLoginRequest struct {
|
|
Code string `form:"code" json:"code" validate:"required"`
|
|
}
|
|
|
|
type LoginResponse struct {
|
|
Token string
|
|
}
|
|
|
|
type YouChuDecryptData struct {
|
|
Mobile string `json:"phone"`
|
|
CerNo string `json:"cerNo"`
|
|
Time string `json:"time"`
|
|
UserId string `json:"userId"`
|
|
}
|