modorform.java
来自「本系统是struts+hibernate完成的,主要功能是一个网上购物管理系统」· Java 代码 · 共 73 行
JAVA
73 行
/**
*
*/
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 + =
减小字号Ctrl + -
显示快捷键?