📄 40b591349728001d1b69a3336d673cb1
字号:
/**
*
*/
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(); //及联产品对象集合
/**
* @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 + -