BrowseHistory.java 2.38 KB
package com.diligrp.website.domain;

import java.util.Date;

/**
 * 浏览历史
 * <B>Description</B> TODO <br />
 * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />
 * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />
 * <B>Company</B> 地利集团
 * @createTime 2014年6月20日 下午2:06:45
 * @author ipangy
 */
public class BrowseHistory{
    private Long id;
    private Long categoryId;
    private Long productId;
    private String productName;
    private int minPrice;
    private String unit;
    private String defaultPic;
    private Date browse_time;
    
    public BrowseHistory() {
    }
    
    public BrowseHistory(Long id, Long categoryId, Long productId,
            String productName, int minPrice, String unit, String defaultPic,
            Date browse_time) {
        super();
        this.id = id;
        this.categoryId = categoryId;
        this.productId = productId;
        this.productName = productName;
        this.minPrice = minPrice;
        this.unit = unit;
        this.defaultPic = defaultPic;
        this.browse_time = browse_time;
    }

    public String getDefaultPic() {
        return defaultPic;
    }
    
    public void setDefaultPic(String defaultPic) {
        this.defaultPic = defaultPic;
    }



    public int getMinPrice() {
        return minPrice;
    }

    
    public void setMinPrice(int minPrice) {
        this.minPrice = minPrice;
    }

    
    public String getUnit() {
        return unit;
    }

    
    public void setUnit(String unit) {
        this.unit = unit;
    }

    public Long getId() {
        return id;
    }
    
    public void setId(Long id) {
        this.id = id;
    }
    
    public Long getCategoryId() {
        return categoryId;
    }
    
    public void setCategoryId(Long categoryId) {
        this.categoryId = categoryId;
    }
    
    public Long getProductId() {
        return productId;
    }
    
    public void setProductId(Long productId) {
        this.productId = productId;
    }
    
    public String getProductName() {
        return productName;
    }
    
    public void setProductName(String productName) {
        this.productName = productName;
    }
    
    public Date getBrowse_time() {
        return browse_time;
    }
    
    public void setBrowse_time(Date browse_time) {
        this.browse_time = browse_time;
    }

}