?? category.java
字號:
package com.david.bo;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* Category generated by MyEclipse Persistence Tools
*/
public class Category implements java.io.Serializable {
// Fields
private Integer id;
private Userinfo userinfo;
private String categoryName;
private String categoryIntro;
private Date addTime;
private Set files = new HashSet(0);
// Constructors
/** default constructor */
public Category() {
}
/** minimal constructor */
public Category(Userinfo userinfo) {
this.userinfo = userinfo;
}
/** full constructor */
public Category(Userinfo userinfo, String categoryName,
String categoryIntro, Date addTime, Set files) {
this.userinfo = userinfo;
this.categoryName = categoryName;
this.categoryIntro = categoryIntro;
this.addTime = addTime;
this.files = files;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Userinfo getUserinfo() {
return this.userinfo;
}
public void setUserinfo(Userinfo userinfo) {
this.userinfo = userinfo;
}
public String getCategoryName() {
return this.categoryName;
}
public void setCategoryName(String categoryName) {
this.categoryName = categoryName;
}
public String getCategoryIntro() {
return this.categoryIntro;
}
public void setCategoryIntro(String categoryIntro) {
this.categoryIntro = categoryIntro;
}
public Date getAddTime() {
return this.addTime;
}
public void setAddTime(Date addTime) {
this.addTime = addTime;
}
public Set getFiles() {
return this.files;
}
public void setFiles(Set files) {
this.files = files;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -