2024-06-19 18:32:34 +08:00
|
|
|
package front
|
|
|
|
|
|
|
|
type UnionLoginRequest struct {
|
|
|
|
Code string `form:"code" json:"code" validate:"required"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type LoginResponse struct {
|
2024-06-25 13:51:22 +08:00
|
|
|
Token string `json:"token"`
|
2024-06-19 18:32:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type YouChuDecryptData struct {
|
|
|
|
Mobile string `json:"phone"`
|
|
|
|
CerNo string `json:"cerNo"`
|
|
|
|
Time string `json:"time"`
|
|
|
|
UserId string `json:"userId"`
|
|
|
|
}
|