shopcart.java
来自「>项目名称:电脑电子商务平台 >1.运行环境JDK1.6+Orac」· Java 代码 · 共 64 行
JAVA
64 行
package omega.domain;
import java.io.Serializable;
public class Shopcart implements Serializable {
int id;
int orderid;
int productid;
int price;
int count;
int saleprice;
String username;
String productname;
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public int getPrice() {
return price;
}
public void setPrice(int price) {
this.price = price;
}
public int getSaleprice() {
return saleprice;
}
public void setSaleprice(int saleprice) {
this.saleprice = saleprice;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getProductid() {
return productid;
}
public void setProductid(int productid) {
this.productid = productid;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getProductname() {
return productname;
}
public void setProductname(String productname) {
this.productname = productname;
}
public int getOrderid() {
return orderid;
}
public void setOrderid(int orderid) {
this.orderid = orderid;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?