forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProviderForm.java
More file actions
87 lines (67 loc) · 1.63 KB
/
ProviderForm.java
File metadata and controls
87 lines (67 loc) · 1.63 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package com.actionForm;
import org.apache.struts.action.*;
public class ProviderForm extends ActionForm {
private int id=-1;
private String name="";
private String address="";
private String fax="";
private String tel="";
private String postcode="";
private String bankNo="";
private String bankName="";
private String memo="";
public int getId() {
return id;
}
public String getName() {
return name;
}
public String getAddress() {
return address;
}
public String getFax() {
return fax;
}
public String getTel() {
return tel;
}
public String getPostcode() {
return postcode;
}
public String getBankNo() {
return bankNo;
}
public String getBankName() {
return bankName;
}
public String getMemo() {
return memo;
}
public void setId(int id) {
this.id = id;
}
public void setName(String name) {
this.name = name;
}
public void setAddress(String address) {
this.address = address;
}
public void setFax(String fax) {
this.fax = fax;
}
public void setTel(String tel) {
this.tel = tel;
}
public void setPostcode(String postcode) {
this.postcode = postcode;
}
public void setBankNo(String bankNo) {
this.bankNo = bankNo;
}
public void setBankName(String bankName) {
this.bankName = bankName;
}
public void setMemo(String memo) {
this.memo = memo;
}
}