productiontype.java
来自「客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户」· Java 代码 · 共 71 行
JAVA
71 行
/**
*
*/
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 + =
减小字号Ctrl + -
显示快捷键?