⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 product.java

📁 自己做的一个企业招标系统,B/S结构。开发工具Eclipse
💻 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;
	}
}

⌨️ 快捷键说明

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