📄 buyproductform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package cn.bway.foreigntrade.repertory.buyproduct.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-11-2008
*
* XDoclet definition:
* @struts.form name="buyproductForm"
*/
public class BuyproductForm extends BaseForm {
private String id;
private String buydocumentid;
private String specs;
private String colors;
private String totals;
private String simpleprice;
private String totalprice;
private String notes;
private String picurl;
private String productid;
public BuyproductForm() {
}
public BuyproductForm(String buydocumentid, String specs, String colors, String totals, String simpleprice, String totalprice, String notes, String picurl, String productid) {
super();
this.buydocumentid = buydocumentid;
this.specs = specs;
this.colors = colors;
this.totals = totals;
this.simpleprice = simpleprice;
this.totalprice = totalprice;
this.notes = notes;
this.picurl = picurl;
this.productid = productid;
}
public String getBuydocumentid() {
return buydocumentid;
}
public void setBuydocumentid(String buyproductid) {
this.buydocumentid = buyproductid;
}
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 getNotes() {
return notes;
}
public void setNotes(String notes) {
this.notes = notes;
}
public String getPicurl() {
return picurl;
}
public void setPicurl(String picurl) {
this.picurl = picurl;
}
public String getSimpleprice() {
return simpleprice;
}
public void setSimpleprice(String simpleprice) {
this.simpleprice = simpleprice;
}
public String getSpecs() {
return specs;
}
public void setSpecs(String specs) {
this.specs = specs;
}
public String getTotalprice() {
return totalprice;
}
public void setTotalprice(String totalprice) {
this.totalprice = totalprice;
}
public String getTotals() {
return totals;
}
public void setTotals(String totals) {
this.totals = totals;
}
public String getProductid() {
return productid;
}
public void setProductid(String productid) {
this.productid = productid;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -