oauth.go 462 B

123456789101112131415
  1. package api
  2. type OidcAuthRequest struct {
  3. DeviceInfo DeviceInfoInLogin `json:"deviceInfo" label:"设备信息"`
  4. Id string `json:"id" label:"id"`
  5. Op string `json:"op" label:"op"`
  6. Uuid string `json:"uuid" label:"uuid"`
  7. }
  8. type OidcAuthQuery struct {
  9. Code string `json:"code" form:"code" label:"code"`
  10. Id string `json:"id" form:"id" label:"id"`
  11. Uuid string `json:"uuid" form:"uuid" label:"uuid"`
  12. }