WxXcxAuthGetPluginOpenPidRes.java 548 Bytes
Newer Older
1
package com.yanzuoguang.wxxcx.user.getpluginpid;
xianjun's avatar
xianjun committed
2

3 4
import com.yanzuoguang.wxxcx.base.WxXcxResponseBaseError;

xianjun's avatar
xianjun committed
5 6 7 8 9
/**
 * 通过 wx.pluginLogin 接口获得插件用户标志凭证 code 后传到开发者服务器 响应
 *
 * @author 李贤军
 */
10
public class WxXcxAuthGetPluginOpenPidRes extends WxXcxResponseBaseError {
xianjun's avatar
xianjun committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24

    /**
     * 插件用户的唯一标识
     */
    private String openpid;

    public String getOpenpid() {
        return openpid;
    }

    public void setOpenpid(String openpid) {
        this.openpid = openpid;
    }
}