com.alipay.api.domain.KoubeiMarketingToolPointsQueryModel 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-09 11:45:18
*/
public class KoubeiMarketingToolPointsQueryModel extends AlipayObject {
private static final long serialVersionUID = 4226858147125852427L;
/**
* 活动积分帐户
*/
@ApiField("activity_account")
private String activityAccount;
/**
* 用户ID
*/
@ApiField("user_id")
private String userId;
public String getActivityAccount() {
return this.activityAccount;
}
public void setActivityAccount(String activityAccount) {
this.activityAccount = activityAccount;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy