📄 tdictype.java
字号:
package com.chinatelecom.mode;
import java.util.HashSet;
import java.util.Set;
/**
* TDicType generated by MyEclipse Persistence Tools
*/
public class TDicType implements java.io.Serializable {
// Fields
private Long typeId;
private String typeName;
private String typeModule;
private String typeNote;
private Set TDicContents = new HashSet(0);
// Constructors
/** default constructor */
public TDicType() {
}
/** minimal constructor */
public TDicType(String typeName, String typeNote) {
this.typeName = typeName;
this.typeNote = typeNote;
}
/** full constructor */
public TDicType(String typeName, String typeModule, String typeNote,
Set TDicContents) {
this.typeName = typeName;
this.typeModule = typeModule;
this.typeNote = typeNote;
this.TDicContents = TDicContents;
}
// Property accessors
public Long getTypeId() {
return this.typeId;
}
public void setTypeId(Long typeId) {
this.typeId = typeId;
}
public String getTypeName() {
return this.typeName;
}
public void setTypeName(String typeName) {
this.typeName = typeName;
}
public String getTypeModule() {
return this.typeModule;
}
public void setTypeModule(String typeModule) {
this.typeModule = typeModule;
}
public String getTypeNote() {
return this.typeNote;
}
public void setTypeNote(String typeNote) {
this.typeNote = typeNote;
}
public Set getTDicContents() {
return this.TDicContents;
}
public void setTDicContents(Set TDicContents) {
this.TDicContents = TDicContents;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -