
com.alipay.api.domain.AlipayOpenPublicAccountQueryModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 查询绑定商户会员号
*
* @author auto create
* @since 1.0, 2016-08-10 17:28:37
*/
public class AlipayOpenPublicAccountQueryModel extends AlipayObject {
private static final long serialVersionUID = 8812721134284537355L;
/**
* 支付宝账号userid,2088开头长度为16位的字符串
*/
@ApiField("user_id")
private String userId;
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy