?? product.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 + -