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

📄 product.java

📁 Easy_Buy是一个在线销售系统
💻 JAVA
字号:
//package eshop;public class Product {  public int productID;  public String productName;  public String coding;  public int supplierID;  public String categoryID;  public double supplierPrice;  public double marketPrice;  public double price;  public String picture;  public int stockNumber;  public int saleNumber;  public String modifyMan;  public String modifyDate;  public String description;  public Product() {  }  public void setProduct(int productID,                         String productName,                         String coding,                         int supplierID,                         String categoryID,                         double supplierPrice,                         double marketPrice,                         double price,                         String picture,                         int stockNumber,                         int saleNumber,                         String modifyMan,                         String modifyDate,                         String description){    this.productID=productID;    this.productName=productName;    this.coding=coding;    this.supplierID=supplierID;    this.categoryID=categoryID;    this.supplierPrice=supplierPrice;    this.marketPrice=marketPrice;    this.price=price;    this.picture=picture;    this.stockNumber=stockNumber;    this.saleNumber=saleNumber;    this.modifyMan=modifyMan;    this.modifyDate=modifyDate;    this.description=description;  }}

⌨️ 快捷键说明

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