eleme.openapi.sdk.api.entity.ad.ShopAddAdGroup Maven / Gradle / Ivy
package eleme.openapi.sdk.api.entity.ad;
public class ShopAddAdGroup{
/**
* 店铺id
*/
private Long shopId;
public Long getShopId() {
return shopId;
}
public void setShopId(Long shopId) {
this.shopId = shopId;
}
/**
* 预算
*/
private String budget;
public String getBudget() {
return budget;
}
public void setBudget(String budget) {
this.budget = budget;
}
/**
* 出价
*/
private String bidPrice;
public String getBidPrice() {
return bidPrice;
}
public void setBidPrice(String bidPrice) {
this.bidPrice = bidPrice;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy