All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.user.api.domain.request.UserBindOauthRequest Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.haoxuer.discover.user.api.domain.request;

import com.haoxuer.discover.rest.base.RequestUserTokenObject;

public class UserBindOauthRequest extends RequestUserTokenObject {

  /**
   * 第三方登陆类型
   */
  private String type;

  private String code;

  public String getType() {
    return type;
  }

  public void setType(String type) {
    this.type = type;
  }

  public String getCode() {
    return code;
  }

  public void setCode(String code) {
    this.code = code;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy