📄 orderproductform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package cn.bway.foreigntrade.order.orderproduct.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionMapping;
import cn.bway.common.form.BaseForm;
/**
* MyEclipse Struts
* Creation date: 03-13-2008
*
* XDoclet definition:
* @struts.form name="OrderproductForm"
*/
public class OrderproductForm extends BaseForm {
private String productid;
private String id;
private String productcode;
private String ordercode;
private String sizes;
private String specs;
private String stuff;
private String colors;
private String units;
private String money;
private String item;
private String image;
private String numbers;
public OrderproductForm(String id, String productcode, String ordercode, String sizes, String specs, String stuff, String colors, String units, String money, String item, String image, String numbers) {
super();
this.id = id;
this.productcode = productcode;
this.ordercode = ordercode;
this.sizes = sizes;
this.specs = specs;
this.stuff = stuff;
this.colors = colors;
this.units = units;
this.money = money;
this.item = item;
this.image = image;
this.numbers = numbers;
}
public String getColors() {
return colors;
}
public void setColors(String colors) {
this.colors = colors;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
public String getItem() {
return item;
}
public void setItem(String item) {
this.item = item;
}
public String getMoney() {
return money;
}
public void setMoney(String money) {
this.money = money;
}
public String getOrdercode() {
return ordercode;
}
public void setOrdercode(String ordercode) {
this.ordercode = ordercode;
}
public String getProductcode() {
return productcode;
}
public void setProductcode(String productcode) {
this.productcode = productcode;
}
public String getProductid() {
return productid;
}
public void setProductid(String productid) {
this.productid = productid;
}
public String getSizes() {
return sizes;
}
public void setSizes(String sizes) {
this.sizes = sizes;
}
public String getSpecs() {
return specs;
}
public void setSpecs(String specs) {
this.specs = specs;
}
public String getStuff() {
return stuff;
}
public void setStuff(String stuff) {
this.stuff = stuff;
}
public String getUnits() {
return units;
}
public void setUnits(String units) {
this.units = units;
}
public String getNumbers() {
return numbers;
}
public void setNumbers(String numbers) {
this.numbers = numbers;
}
public OrderproductForm() {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -