tdiccontent.java
来自「一个简单的用Spring+Hibernate+Struts的亿阳信通系统」· Java 代码 · 共 83 行
JAVA
83 行
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 + =
减小字号Ctrl + -
显示快捷键?