📄 modorform.java
字号:
/**
*
*/
package struts.Form;
import java.io.Serializable;
import org.apache.struts.action.ActionForm;
/**
* @author Administrator
*
*/
public class modOrForm extends ActionForm implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private String goods;
private String singlePrice;
private String orderDate;
/**
* @return the goods
*/
public String getGoods() {
return goods;
}
/**
* @param goods
* the goods to set
*/
public void setGoods(String goods) {
this.goods = goods;
}
/**
* @return the orderDate
*/
public String getOrderDate() {
return orderDate;
}
/**
* @param orderDate
* the orderDate to set
*/
public void setOrderDate(String orderDate) {
this.orderDate = orderDate;
}
/**
* @return the singlePrice
*/
public String getSinglePrice() {
return singlePrice;
}
/**
* @param singlePrice
* the singlePrice to set
*/
public void setSinglePrice(String singlePrice) {
this.singlePrice = singlePrice;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -