?? ntype.java
字號:
package com.xdf.news.bean;
import java.util.HashSet;
import java.util.Set;
/**
* Ntype generated by MyEclipse - Hibernate Tools
*/
public class Ntype implements java.io.Serializable {
// Fields
private Long typeid;
private String typename;
private Set newses = new HashSet(0);
// Constructors
/** default constructor */
public Ntype() {
}
/** minimal constructor */
public Ntype(String typename) {
this.typename = typename;
}
/** full constructor */
public Ntype(String typename, Set newses) {
this.typename = typename;
this.newses = newses;
}
// 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 Set getNewses() {
return this.newses;
}
public void setNewses(Set newses) {
this.newses = newses;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -