-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdataDTO
More file actions
56 lines (52 loc) · 1.01 KB
/
Copy pathdataDTO
File metadata and controls
56 lines (52 loc) · 1.01 KB
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
package cafe.dto;
public class dataDTO {
private String menu; //메뉴
private String price; //가격
private String ingredient; //재료
private int ID; //ID
private String name; //이름
private String tel; //연락처
private String position; //직책
public String getMenu() {
return menu;
}
public void setMenu(String menu) {
this.menu = menu;
}
public String getPrice() {
return price;
}
public void setPrice(String price) {
this.price = price;
}
public String getIngredient() {
return ingredient;
}
public void setIngredient(String ingredient) {
this.ingredient = ingredient;
}
public int getID() {
return ID;
}
public void setID(int iD) {
ID = iD;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getTel() {
return tel;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getPosition() {
return position;
}
public void setPosition(String position) {
this.position = position;
}
}