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

📄 lineitembean.java

📁 21天精通Java,这是一本英文书
💻 JAVA
字号:
package webservices;

public class LineItemBean
{
  private String _productCode;
  private int _quantity;
  
  public LineItemBean(String productCode, int quantity)
  {
    _productCode = productCode;
    _quantity = quantity;
  }
  
  public LineItemBean()
  {
  }
  
  public String getProductCode()
  {
    return _productCode;
  }
  
  public void setProductCode(String productCode)
  {
    _productCode = productCode;
  }

  public int getQuantity()
  {
    return _quantity;
  }
  
  public void setQuantity(int quantity)
  {
    _quantity = quantity;
  }
}

⌨️ 快捷键说明

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