-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathProduct.java
More file actions
57 lines (52 loc) · 940 Bytes
/
Product.java
File metadata and controls
57 lines (52 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.entity;
public class Product {
private int pid;
private String pname;
private int pprice;
private int pquantity;
private String pimage;
private int bid;
private int cid;
public int getPid() {
return pid;
}
public void setPid(int pid) {
this.pid = pid;
}
public String getPname() {
return pname;
}
public void setPname(String pname) {
this.pname = pname;
}
public int getPprice() {
return pprice;
}
public void setPprice(int pprice) {
this.pprice = pprice;
}
public int getPquantity() {
return pquantity;
}
public void setPquantity(int pquantity) {
this.pquantity = pquantity;
}
public String getPimage() {
return pimage;
}
public void setPimage(String pimage) {
this.pimage = pimage;
}
public int getBid() {
return bid;
}
public void setBid(int bid) {
this.bid = bid;
}
public int getCid() {
return cid;
}
public void setCid(int cid) {
this.cid = cid;
}
}