abstractcdtype.java
来自「用jsf实现cd商店的程序」· Java 代码 · 共 48 行
JAVA
48 行
package com.tangjun.web.pojo;
import java.util.HashSet;
import java.util.Set;
public class AbstractCDType
{
private Integer id;
protected String typeName;
protected Set cds = new HashSet(0);
public AbstractCDType()
{
super();
}
public Integer getId()
{
return this.id;
}
public void setId(Integer id)
{
this.id = id;
}
public String getTypeName()
{
return this.typeName;
}
public void setTypeName(String typeName)
{
this.typeName = typeName;
}
public Set getCds()
{
return this.cds;
}
public void setCds(Set cds)
{
this.cds = cds;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?