-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathmobile.java
More file actions
50 lines (45 loc) · 874 Bytes
/
mobile.java
File metadata and controls
50 lines (45 loc) · 874 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
package com.entity;
public class mobile {
private String bname;
private String cname;
private String pname;
private int pprice;
private int pquantity;
private String pimage;
public String getBname() {
return bname;
}
public void setBname(String bname) {
this.bname = bname;
}
public String getCname() {
return cname;
}
public void setCname(String cname) {
this.cname = cname;
}
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;
}
}