📄 tdiccontent.java
字号:
package com.chinatelecom.mode;
/**
* TDicContent generated by MyEclipse Persistence Tools
*/
public class TDicContent implements java.io.Serializable {
// Fields
private Long dicId;
private TDicType TDicType;
private String dicName;
private String dicNote;
private String c;
// Constructors
public String getC() {
return c;
}
public void setC(String c) {
this.c = c;
}
/** default constructor */
public TDicContent() {
}
/** minimal constructor */
public TDicContent(String dicName, String dicNote) {
this.dicName = dicName;
this.dicNote = dicNote;
}
/** full constructor */
public TDicContent(TDicType TDicType, String dicName, String dicNote) {
this.TDicType = TDicType;
this.dicName = dicName;
this.dicNote = dicNote;
}
// Property accessors
public Long getDicId() {
return this.dicId;
}
public void setDicId(Long dicId) {
this.dicId = dicId;
}
public TDicType getTDicType() {
return this.TDicType;
}
public void setTDicType(TDicType TDicType) {
this.TDicType = TDicType;
}
public String getDicName() {
return this.dicName;
}
public void setDicName(String dicName) {
this.dicName = dicName;
}
public String getDicNote() {
return this.dicNote;
}
public void setDicNote(String dicNote) {
this.dicNote = dicNote;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -