zuixin.java
来自「用JSP制作的个人网站」· Java 代码 · 共 34 行
JAVA
34 行
package liangjuyan;
public class zuixin{
private Integer id=Integer.valueOf("-1");
private int htype=-1;
private String title="";
private String detail="";
public void zuixin(){ //必须的
}
public Integer getId(){
return id;
}
public void setId(Integer id){
this.id=id;
}
public String getTitle(){
return title;
}
public void setTitle(String title){
this.title=title;
}
public String getDetail(){
return detail;
}
public void setDetail(String detail){
this.detail=detail;
}
public int getHtype(){
return htype;
}
public void setHtype(int htype){
this.htype=htype;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?