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

cn.ipokerface.weixin.proxy.payment.OpenidResult Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package cn.ipokerface.weixin.proxy.payment;

import cn.ipokerface.weixin.proxy.merchant.MerchantResult;
import com.alibaba.fastjson.annotation.JSONField;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

/**
 * Created by       PokerFace
 * Create Date      2019-12-28.
 * Email:           [email protected]
 * Version          1.0.0
 * 

* Description: */ @XmlRootElement @XmlAccessorType(XmlAccessType.FIELD) public class OpenidResult extends MerchantResult { private static final long serialVersionUID = 902743989722741814L; /** * 用户在商户appid下的唯一标识 */ @XmlElement(name = "openid") @JSONField(name = "openid") private String openId; /** * 用户在商户appid下的唯一标识 */ @XmlElement(name = "sub_openid") @JSONField(name = "sub_openid") private String subOpenId; public String getOpenId() { return openId; } public String getSubOpenId() { return subOpenId; } @Override public String toString() { return "OpenIdResult [openId=" + openId + ", subOpenId=" + subOpenId + ", " + super.toString() + "]"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy