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

📄 productinfo.java

📁 一套自己原先在学校作的CRM,大家指点下
💻 JAVA
字号:
package com.crm.pojo;

import java.util.HashSet;
import java.util.Set;

/**
 * ProductInfo generated by MyEclipse Persistence Tools
 */

public class ProductInfo implements java.io.Serializable {

	// Fields

	/**
	 * 
	 */
	private static final long serialVersionUID = -2786251964512923453L;

	private Integer productId=0;

	private String productName;

	private String productModel;

	private Integer productQuantity;

	private String productUnit;

	private String productRemark;
	private Double productJia;

	private Integer productSaleQuantity;

	private Set depotInfos = new HashSet(0);
	private Set orderLists = new HashSet(0);
	private String productGradeJob;

	// Constructors

	/** default constructor */
	public ProductInfo() {
	}

	/** minimal constructor */
	public ProductInfo(String productName, String productModel,
			Integer productQuantity, String productUnit,
			Integer productSaleQuantity,Double productJia) {
		this.productName = productName;
		this.productModel = productModel;
		this.productQuantity = productQuantity;
		this.productUnit = productUnit;
		this.productSaleQuantity = productSaleQuantity;
		this.productJia=productJia;
	}

	/** full constructor */
	public ProductInfo(String productName, String productModel,
			Integer productQuantity, String productUnit, String productRemark,
			Integer productSaleQuantity, Double productJia,Set depotInfos,Set orderLists) {
		this.productName = productName;
		this.productModel = productModel;
		this.productQuantity = productQuantity;
		this.productUnit = productUnit;
		this.productRemark = productRemark;
		this.productSaleQuantity = productSaleQuantity;
		this.depotInfos = depotInfos;
		this.orderLists=orderLists;
		this.productJia=productJia;
	}

	// Property accessors

	public Integer getProductId() {
		return this.productId;
	}

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

	public String getProductName() {
		return this.productName;
	}

	public void setProductName(String productName) {
		this.productName = productName;
	}

	public String getProductModel() {
		return this.productModel;
	}

	public void setProductModel(String productModel) {
		this.productModel = productModel;
	}

	public Integer getProductQuantity() {
		return this.productQuantity;
	}

	public void setProductQuantity(Integer productQuantity) {
		this.productQuantity = productQuantity;
	}

	public String getProductUnit() {
		return this.productUnit;
	}

	public void setProductUnit(String productUnit) {
		this.productUnit = productUnit;
	}

	public String getProductRemark() {
		return this.productRemark;
	}

	public void setProductRemark(String productRemark) {
		this.productRemark = productRemark;
	}

	public Integer getProductSaleQuantity() {
		return this.productSaleQuantity;
	}

	public void setProductSaleQuantity(Integer productSaleQuantity) {
		this.productSaleQuantity = productSaleQuantity;
	}

	public Set getDepotInfos() {
		return this.depotInfos;
	}

	public void setDepotInfos(Set depotInfos) {
		this.depotInfos = depotInfos;
	}

	public String getProductGradeJob() {
		return productGradeJob;
	}

	public void setProductGradeJob(String productGradeJob) {
		this.productGradeJob = productGradeJob;
	}

	public Set getOrderLists() {
		return orderLists;
	}

	public void setOrderLists(Set orderLists) {
		this.orderLists = orderLists;
	}

	public Double getProductJia() {
		return productJia;
	}

	public void setProductJia(Double productJia) {
		this.productJia = productJia;
	}

}

⌨️ 快捷键说明

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