product.java

来自「自己做的一个企业招标系统,B/S结构。开发工具Eclipse」· Java 代码 · 共 49 行

JAVA
49
字号
/**
 * 
 */
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;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?