📄 newitembean.java
字号:
package webauction.web.javabean;
public class NewItemBean {
private String description;
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
private String category;
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
private int endTime;
public int getEndTime() {
return endTime;
}
public void setEndTime(int endTime) {
this.endTime = endTime;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -