forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKhinfoBean.java
More file actions
103 lines (80 loc) · 1.6 KB
/
KhinfoBean.java
File metadata and controls
103 lines (80 loc) · 1.6 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package com.mingri.info;
public class KhinfoBean {
private String khname;// 客户全称
private String khjc;// 客户简称
private String address;// 地址
private String postcode;// 邮政编码
private String tel;// 电话
private String fax;// 传真
private String lxr;// 联系人
private String lxrtel;// 联系人电话
private String email;// 电子邮箱
private String khyh;// 开户银行
private String yhzh;// 银行帐号
public String getKhname() {
return khname;
}
public void setKhname(String khname) {
this.khname = khname;
}
public String getKhjc() {
return khjc;
}
public void setKhjc(String khjc) {
this.khjc = khjc;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getPostcode() {
return postcode;
}
public void setPostcode(String postcode) {
this.postcode = postcode;
}
public String getTel() {
return tel;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getFax() {
return fax;
}
public void setFax(String fax) {
this.fax = fax;
}
public String getLxr() {
return lxr;
}
public void setLxr(String lxr) {
this.lxr = lxr;
}
public String getLxrtel() {
return lxrtel;
}
public void setLxrtel(String lxrtel) {
this.lxrtel = lxrtel;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getKhyh() {
return khyh;
}
public void setKhyh(String khyh) {
this.khyh = khyh;
}
public String getYhzh() {
return yhzh;
}
public void setYhzh(String yhzh) {
this.yhzh = yhzh;
}
}