www.pudn.com > zhaobiao.rar > Product.java


/** 
 *  
 */ 
package com.centralsoft.zhaobiao.qtdataguanli; 
 
/** 
 * @author Administrator 
 * 
 */ 
public class Product { 
	private long product_id; 
	private long type_id; 
	private String product_content; 
	private String product_name; 
	private long maker_id; 
	public Product() { 
	} 
	public void setProduct_id(long product_id) { 
		this.product_id = product_id; 
	} 
	public long getProduct_id() { 
		return product_id; 
	} 
	public void setType_id(long type_id) { 
		this.type_id = type_id; 
	} 
	public long getType_id() { 
		return type_id; 
	} 
	public void setProduct_content(String product_content) { 
		this.product_content = product_content; 
	} 
	public String getProduct_content() { 
		return product_content; 
	} 
	public void setProduct_name(String product_name) { 
		this.product_name = product_name; 
	} 
	public String getProduct_name() { 
		return product_name; 
	} 
	public void setMaker_id(long maker_id) { 
		this.maker_id = maker_id; 
	} 
	public long getMaker_id() { 
		return maker_id; 
	} 
}