eleme.openapi.sdk.api.entity.product.OSpecValue Maven / Gradle / Ivy
package eleme.openapi.sdk.api.entity.product;
import eleme.openapi.sdk.api.enumeration.product.*;
import eleme.openapi.sdk.api.entity.product.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;
public class OSpecValue{
/**
* 规格名propertyKey
*/
private String propertyKey;
public String getPropertyKey() {
return propertyKey;
}
public void setPropertyKey(String propertyKey) {
this.propertyKey = propertyKey;
}
/**
* 规格值propertyValue
*/
private String propertyValue;
public String getPropertyValue() {
return propertyValue;
}
public void setPropertyValue(String propertyValue) {
this.propertyValue = propertyValue;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy