📄 609612485199001b1d82e753a621f0e9
字号:
package com.tangjun.hibernate;
// default package
import java.util.HashSet;
import java.util.Set;
/**
* CDType generated by MyEclipse - Hibernate Tools
*/
public class CDType implements java.io.Serializable {
// Fields
private Integer id;
private String typeName;
//private Set cds = new HashSet(0);
// Constructors
/** default constructor */
public CDType() {
}
/** minimal constructor */
public CDType(String typeName) {
this.typeName = typeName;
}
/** full constructor */
/*
public CDType(String typeName, Set cds) {
this.typeName = typeName;
this.cds = cds;
}
*/
// Property accessors
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -