?? booktypeform.java
字號:
package com.actionForm;
import org.apache.struts.action.ActionForm;
public class BookTypeForm extends ActionForm {
private int days;
private Integer id;
private String typeName;
public void setTypeName(String typeName) {
this.typeName = typeName;
}
public void setId(Integer id) {
this.id = id;
}
public void setDays(int days) {
this.days = days;
}
public int getDays() {
return days;
}
public Integer getId() {
return id;
}
public String getTypeName() {
return typeName;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -