parent
24a7631e4f
commit
6923ca9e9d
@ -0,0 +1,70 @@
|
||||
package com.tyj.domain;
|
||||
|
||||
public class Product {
|
||||
private String productid;
|
||||
private String category;
|
||||
private String cname;
|
||||
private String ename;
|
||||
private String image;
|
||||
private String descn;
|
||||
private double listprice;
|
||||
private double unitcost;
|
||||
public String getProductid() {
|
||||
return productid;
|
||||
}
|
||||
public void setProductid(String productid) {
|
||||
this.productid = productid;
|
||||
}
|
||||
public String getCategory() {
|
||||
return category;
|
||||
}
|
||||
public void setCategory(String category) {
|
||||
this.category = category;
|
||||
}
|
||||
public String getCname() {
|
||||
return cname;
|
||||
}
|
||||
public void setCname(String cname) {
|
||||
this.cname = cname;
|
||||
}
|
||||
public String getEname() {
|
||||
return ename;
|
||||
}
|
||||
public void setEname(String ename) {
|
||||
this.ename = ename;
|
||||
}
|
||||
public String getImage() {
|
||||
return image;
|
||||
}
|
||||
public void setImage(String image) {
|
||||
this.image = image;
|
||||
}
|
||||
public String getDescn() {
|
||||
return descn;
|
||||
}
|
||||
public void setDescn(String descn) {
|
||||
this.descn = descn;
|
||||
}
|
||||
public double getListprice() {
|
||||
return listprice;
|
||||
}
|
||||
public void setListprice(double listprice) {
|
||||
this.listprice = listprice;
|
||||
}
|
||||
public double getUnitcost() {
|
||||
return unitcost;
|
||||
}
|
||||
public void setUnitcost(double unitcost) {
|
||||
this.unitcost = unitcost;
|
||||
}
|
||||
public void setListprice(String string) {
|
||||
// TODO 自动生成的方法存根
|
||||
|
||||
}
|
||||
public void setUnitcost(String string) {
|
||||
// TODO 自动生成的方法存根
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in new issue