forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGysinfoBean.java
More file actions
76 lines (74 loc) · 1.51 KB
/
GysinfoBean.java
File metadata and controls
76 lines (74 loc) · 1.51 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
package com.mingri.info;
public class GysinfoBean
{
private String gysname;//供应商全称
private String jc;//简称
private String address;//地址
private String postcode;//邮政编码
private String tel;//电话
private String fax;//传真
private String lxr;//联系人
private String lxrtel;//联系人电话
private String khyh;//开户银行
private String eamil;//电子邮件
public String getGysname() {
return gysname;
}
public void setGysname(String gysname) {
this.gysname = gysname;
}
public String getJc() {
return jc;
}
public void setJc(String jc) {
this.jc = jc;
}
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 getKhyh() {
return khyh;
}
public void setKhyh(String khyh) {
this.khyh = khyh;
}
public String getEamil() {
return eamil;
}
public void setEamil(String eamil) {
this.eamil = eamil;
}
}