com.alipay.api.domain.ItemAttrDto Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 商品属性
*
* @author auto create
* @since 1.0, 2024-04-10 15:18:56
*/
public class ItemAttrDto extends AlipayObject {
private static final long serialVersionUID = 1586134295683896275L;
/**
* 商品属性key
*/
@ApiField("attr_key")
private String attrKey;
/**
* 商品属性value
*/
@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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy