⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 orderform.java

📁 struts的一些用的书籍
💻 JAVA
字号:
package app05b.form;

import org.apache.struts.validator.ValidatorForm;

public final class OrderForm extends ValidatorForm {
  
  private int productId;
  private String customer;
  private String quantity;
  private String price;  
  private String orderDate;
    
  public int getProductId() {
    return productId;
  }
  public void setProductId(int productId) {
    this.productId = productId;
  }
  public String getCustomer() {
    return customer;
  }
  public void setCustomer(String customer) {
    this.customer = customer;
  }
  public String getOrderDate() {
    return orderDate;
  }
  public void setOrderDate(String orderDate) {
    this.orderDate = orderDate;
  }
  public String getQuantity() {
  	return quantity;
  }
  public void setQuantity(String quantity) {
   	this.quantity = quantity;
  }
  public String getPrice() {
   	return price;
  }
  public void setPrice(String price) {
  	this.price = price;
  }    
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -