eleme.openapi.sdk.api.entity.product.OSubIngredientGroup 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 OSubIngredientGroup{
/**
* 配料组id
*/
private Long ingredientGroupId;
public Long getIngredientGroupId() {
return ingredientGroupId;
}
public void setIngredientGroupId(Long ingredientGroupId) {
this.ingredientGroupId = ingredientGroupId;
}
/**
* 子配料组名
*/
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
/**
* 子配料组绑定的sku列表
*/
private List skus;
public List getSkus() {
return skus;
}
public void setSkus(List skus) {
this.skus = skus;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy