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

com.barcke.y.baidu.pojo.BaiduGetSessionKeyResponseDTO Maven / Gradle / Ivy

The newest version!
package com.barcke.y.baidu.pojo;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 *                 ,;,,;
 *                ,;;'(    社
 *      __      ,;;' ' \   会
 *   /'  '\'~~'~' \ /'\.)  主
 * ,;(      )    /  |.     义
 *,;' \    /-.,,(   ) \    码
 *     ) /       ) / )|    农
 *     ||        ||  \)
 *     (_\       (_\
 * @author Barcke
 * @version 1.0
 * 百度获取sessionkey返回数据DTO
 **/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class BaiduGetSessionKeyResponseDTO {

    //用户身份标识,由 appid 和 uid 生成。
    //不同用户登录同一个小程序获取到的 openid 不同,同一个用户使用登录不同一个小程序获取到的 openid 也不同 。
    private String openid;

    //用户的Session Key
    private String session_key;

    //错误码
    private String error;

    //错误描述信息
    private String error_description;

    //错误number
    private String errno;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy