📄 addordform.java
字号:
/**
*
*/
package struts.Form;
import java.io.Serializable;
import org.apache.struts.validator.ValidatorForm;
/**
* @author Administrator
*
*/
public class addOrdForm extends ValidatorForm implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private String newGoods;
private String singlePrice;
private String orderDate;
/**
* @return the newGoods
*/
public String getNewGoods() {
return newGoods;
}
/**
* @param newGoods
* the newGoods to set
*/
public void setNewGoods(String newGoods) {
this.newGoods = newGoods;
}
/**
* @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 + -