com.alipay.api.domain.AnttechBlockchainFinanceAntdaoMypointsPublishModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 集分宝费率查询
*
* @author auto create
* @since 1.0, 2020-07-03 13:21:13
*/
public class AnttechBlockchainFinanceAntdaoMypointsPublishModel extends AlipayObject {
private static final long serialVersionUID = 8211285556811953417L;
/**
* 数量
*/
@ApiField("count")
private Long count;
/**
* 备注信息
*/
@ApiField("memo")
private String memo;
/**
* 方法路由
*/
@ApiField("method_name")
private String methodName;
/**
* 商品ID
*/
@ApiField("sku_id")
private String skuId;
public Long getCount() {
return this.count;
}
public void setCount(Long count) {
this.count = count;
}
public String getMemo() {
return this.memo;
}
public void setMemo(String memo) {
this.memo = memo;
}
public String getMethodName() {
return this.methodName;
}
public void setMethodName(String methodName) {
this.methodName = methodName;
}
public String getSkuId() {
return this.skuId;
}
public void setSkuId(String skuId) {
this.skuId = skuId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy