📄 help.java
字号:
package com.ntsky.bbs.domain;
import java.util.Date;
public class Help extends Entity{
private String title ;
private String content ;
private int type ;
private Date dateCreated ;
private int isHand;
private Common common;
public void setCommon(Common common){
this.common = common;
}
public Common getCommon(){
return this.common;
}
public int getIsHand() {
return isHand;
}
public void setIsHand(int isHand) {
this.isHand = isHand;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public Date getDateCreated() {
return dateCreated;
}
public void setDateCreated(Date dateCreated) {
this.dateCreated = dateCreated;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -