2026-04-09 10:01:23 +08:00
|
|
|
package request
|
|
|
|
|
|
|
|
|
|
type LoginRequest struct {
|
|
|
|
|
Username string `json:"username"`
|
|
|
|
|
Password string `json:"password"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type WxWorkExchangeRequest struct {
|
|
|
|
|
Ticket string `json:"ticket"`
|
|
|
|
|
}
|
2026-05-24 20:49:10 +08:00
|
|
|
|
|
|
|
|
type OIDCExchangeRequest struct {
|
|
|
|
|
Ticket string `json:"ticket"`
|
|
|
|
|
}
|