回答編集履歴
1
追記
answer
CHANGED
@@ -18,14 +18,15 @@
|
|
18
18
|
public int getCompName() {
|
19
19
|
return this.compName;
|
20
20
|
}
|
21
|
-
|
22
21
|
public void setCompName(int compName) {
|
23
22
|
this.compName = compName;
|
24
23
|
}
|
25
|
-
|
26
24
|
public String getPostNo() {
|
27
25
|
return this.postno;
|
28
26
|
}
|
27
|
+
public void setPostNo(String postno) {
|
28
|
+
this.postno = postno;
|
29
|
+
}
|
29
30
|
︙
|
30
31
|
```
|
31
32
|
以上のようにひたすら同じようなことを書いていって
|