com.alipay.api.domain.AlipayOpenPublicGisQueryModel 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
alipay-sdk project for Spring Project
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-10-26 18:05:14
*/
public class AlipayOpenPublicGisQueryModel extends AlipayObject {
private static final long serialVersionUID = 2595252916818755562L;
/**
* 该用户的userId
*/
@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