📄 cflevel1.java
字号:
package cn.hope.mana.pojo;
import java.io.Serializable;
import java.util.Set;
import org.apache.commons.lang.builder.ToStringBuilder;
/** @author Hibernate CodeGenerator */
public class CFlevel1 implements Serializable {
/** identifier field */
private Integer TSectionid;
/** persistent field */
private String flag;
/** persistent field */
private String TSectname;
/** persistent field */
private Set CFlevel2s;
/** full constructor */
public CFlevel1(String flag, String TSectname, Set CFlevel2s) {
this.flag = flag;
this.TSectname = TSectname;
this.CFlevel2s = CFlevel2s;
}
/** default constructor */
public CFlevel1() {
}
public Integer getTSectionid() {
return this.TSectionid;
}
public void setTSectionid(Integer TSectionid) {
this.TSectionid = TSectionid;
}
public String getFlag() {
return this.flag;
}
public void setFlag(String flag) {
this.flag = flag;
}
public String getTSectname() {
return this.TSectname;
}
public void setTSectname(String TSectname) {
this.TSectname = TSectname;
}
public Set getCFlevel2s() {
return this.CFlevel2s;
}
public void setCFlevel2s(Set CFlevel2s) {
this.CFlevel2s = CFlevel2s;
}
public String toString() {
return new ToStringBuilder(this)
.append("TSectionid", getTSectionid())
.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -