📄 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 + -