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

📄 product.java

📁 《JSP程序设计实用教程》-梁建武-源代码-4567.rar
💻 JAVA
字号:
package com.saleSystem;
import java.io.*;

public class Product implements Serializable {

  /* 私有字段 */

  private String productCode;
  private String name;
  private float price;

  /* JavaBean属性访问方法 */

  public String getProductCode() 
  { return this.productCode; }
  public void setProductCode(String productCode) 
  { this.productCode = productCode; }


  public String getName() 
  { return this.name; }
  public void setName(String name) 
  { this.name = name; }

  

  public  void setPrice(float price)
  {this.price=price;}
  public float getPrice()
  {return this.price;
   
  
  }
  


}

⌨️ 快捷键说明

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