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

📄 productiontype.java

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻 JAVA
字号:
/**
 * 
 */
package com.qrsx.qrsxcrm.model;

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

/**
 * 产品类型实体对象
 * @author Administrator
 *
 */
public class ProductionType 
{
	private String id;		//主键
	private String name;		//产品类型,名称
	
	private Set productions = new HashSet();		//及联产品对象集合
	private Set clientProductions;					//级联客户产品集合
	/**
	 * @return the clientProductions
	 */
	public Set getClientProductions() {
		return clientProductions;
	}
	/**
	 * @param clientProductions the clientProductions to set
	 */
	public void setClientProductions(Set clientProductions) {
		this.clientProductions = clientProductions;
	}
	/**
	 * @return the id
	 */
	public String getId() {
		return id;
	}
	/**
	 * @param id the id to set
	 */
	public void setId(String id) {
		this.id = id;
	}
	/**
	 * @return the name
	 */
	public String getName() {
		return name;
	}
	/**
	 * @param name the name to set
	 */
	public void setName(String name) {
		this.name = name;
	}
	/**
	 * @return the productions
	 */
	public Set getProductions() {
		return productions;
	}
	/**
	 * @param productions the productions to set
	 */
	public void setProductions(Set productions) {
		this.productions = productions;
	}
	
}

⌨️ 快捷键说明

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