www.pudn.com > Easy_Buy电子商务系统.rar > 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;
}
}