eleme.openapi.sdk.api.entity.cpc.OSuggestWagerInfo Maven / Gradle / Ivy
package eleme.openapi.sdk.api.entity.cpc;
import eleme.openapi.sdk.api.enumeration.cpc.*;
import eleme.openapi.sdk.api.entity.cpc.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;
public class OSuggestWagerInfo{
/**
* 店铺号
*/
private long restaurantId;
public long getRestaurantId() {
return restaurantId;
}
public void setRestaurantId(long restaurantId) {
this.restaurantId = restaurantId;
}
/**
* 推荐出价(元)
*/
private double recommendBid;
public double getRecommendBid() {
return recommendBid;
}
public void setRecommendBid(double recommendBid) {
this.recommendBid = recommendBid;
}
/**
* 预估每日点击量
*/
private int estimateClick;
public int getEstimateClick() {
return estimateClick;
}
public void setEstimateClick(int estimateClick) {
this.estimateClick = estimateClick;
}
/**
* 预估每日预算(元)
*/
private double estimateBudget;
public double getEstimateBudget() {
return estimateBudget;
}
public void setEstimateBudget(double estimateBudget) {
this.estimateBudget = estimateBudget;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy