📄 zlxzinfo.java~2~
字号:
package com.j2ee.func.zlxz;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2006</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class ZlxzInfo {
public ZlxzInfo() {
}
private int id;
private String title;
private String type;
private String sentdate;//发布时间
private int seecount;//浏览次数
private String link;//连接
private String shortbrief;//简介
private String loadman;//提交人
private int downcount;//下载次数
public void setId(int id){
this.id=id;
}
public void setTitle(String title){
this.title=title;
}
public void setType(String type){
this.type=type;
}
public void setSentdate(String sentdate){
this.sentdate=sentdate;
}
public void setSeecount(int seecount){
this.seecount=seecount;
}
public int getId(){
return this.id;
}
public String getTitle(){
return this.title;
}
public String getType(){
return this.type;
}
public String getSentdate(){
return this.sentdate;
}
public int getSeecount(){
return this.seecount;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -