com.alipay.api.domain.ItemSkuAttrVO 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;
/**
* sku销售属性
*
* @author auto create
* @since 1.0, 2024-05-29 17:14:16
*/
public class ItemSkuAttrVO extends AlipayObject {
private static final long serialVersionUID = 7331864363344929282L;
/**
* 销售属性key值
*/
@ApiField("attr_key")
private String attrKey;
/**
* 销售属性值
*/
@ApiField("attr_value")
private String attrValue;
public String getAttrKey() {
return this.attrKey;
}
public void setAttrKey(String attrKey) {
this.attrKey = attrKey;
}
public String getAttrValue() {
return this.attrValue;
}
public void setAttrValue(String attrValue) {
this.attrValue = attrValue;
}
}