ChannelSkuCompare.java 2.22 KB
package com.yoho.ufo.model;

import java.io.Serializable;
import java.math.BigDecimal;

/**
 * 爬虫跟毒价
 */
public class ChannelSkuCompare implements Serializable {


    private static final long serialVersionUID = 1613330087543482073L;

    /**
     * 主键
     */
    private Integer id;

    /**
     * 商品ID
     */
    private Integer productId;
    
    private Integer sku;
    
    private Integer sizeId;
    
    private BigDecimal channelPrice;

    private BigDecimal lowRate;
    
    private BigDecimal highRate;
    
    private Integer updateTime;
    
    private String channelUrl;
    
    public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public Integer getProductId() {
		return productId;
	}

	public void setProductId(Integer productId) {
		this.productId = productId;
	}

	public Integer getSku() {
		return sku;
	}

	public void setSku(Integer sku) {
		this.sku = sku;
	}

	public Integer getSizeId() {
		return sizeId;
	}

	public void setSizeId(Integer sizeId) {
		this.sizeId = sizeId;
	}

	public BigDecimal getChannelPrice() {
		return channelPrice;
	}

	public void setChannelPrice(BigDecimal channelPrice) {
		this.channelPrice = channelPrice;
	}

	public BigDecimal getLowRate() {
		return lowRate;
	}

	public void setLowRate(BigDecimal lowRate) {
		this.lowRate = lowRate;
	}

	public BigDecimal getHighRate() {
		return highRate;
	}

	public void setHighRate(BigDecimal highRate) {
		this.highRate = highRate;
	}

	public Integer getUpdateTime() {
		return updateTime;
	}

	public void setUpdateTime(Integer updateTime) {
		this.updateTime = updateTime;
	}

	public String getChannelUrl() {
		return channelUrl;
	}

	public void setChannelUrl(String channelUrl) {
		this.channelUrl = channelUrl;
	}

	@Override
    public String toString() {
        return "ProductPool{" +
                "id=" + id +
                ", productId='" + productId + 
                ", sku=" + sku +
                ", sizeId=" + sizeId +
                ", channelPrice=" + channelPrice +
                ", lowRate=" + lowRate +
                ", highRate=" + highRate +
                ", updateTime=" + updateTime +
                ", channelUrl=" + channelUrl +
                '}';
    }
}