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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
package com.yanzuoguang.wxxcx.ocr.license;
import com.yanzuoguang.wxxcx.base.WxXcxResponseBaseError;
/***
* 返回结果
*
* @author:heyanou
*/
public class WxOcrBusinessLicenseDataRes extends WxXcxResponseBaseError {
/**
* <p>
* 描述:注册号
* </p>
*/
private String reg_num;
/**
* <p>
* 描述:编号
* </p>
*/
private String serial;
/**
* <p>
* 描述:法定代表人姓名
* </p>
*/
private String legal_representative;
/**
* <p>
* 描述:企业名称
* </p>
*/
private String enterprise_name;
/**
* <p>
* 描述:组成形式
* </p>
*/
private String type_of_organization;
/**
* <p>
* 描述:经营场所/企业住所
* </p>
*/
private String address;
/**
* <p>
* 描述:公司类型
* </p>
*/
private String type_of_enterprise;
/**
* <p>
* 描述:经营范围
* </p>
*/
private String business_scope;
/**
* <p>
* 描述:注册资本
* </p>
*/
private String registered_capital;
/**
* <p>
* 描述:实收资本
* </p>
*/
private String paid_in_capital;
/**
* <p>
* 描述:营业期限
* </p>
*/
private String valid_period;
/**
* <p>
* 描述:注册日期/成立日期
* </p>
*/
private String registered_date;
/**
* <p>
* 描述:营业执照位置
* </p>
*/
private String cert_position;
/**
* <p>
* 描述:图片大小
* </p>
*/
private String img_size;
public String getReg_num() {
return reg_num;
}
public void setReg_num(String reg_num) {
this.reg_num = reg_num;
}
public String getSerial() {
return serial;
}
public void setSerial(String serial) {
this.serial = serial;
}
public String getLegal_representative() {
return legal_representative;
}
public void setLegal_representative(String legal_representative) {
this.legal_representative = legal_representative;
}
public String getEnterprise_name() {
return enterprise_name;
}
public void setEnterprise_name(String enterprise_name) {
this.enterprise_name = enterprise_name;
}
public String getType_of_organization() {
return type_of_organization;
}
public void setType_of_organization(String type_of_organization) {
this.type_of_organization = type_of_organization;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getType_of_enterprise() {
return type_of_enterprise;
}
public void setType_of_enterprise(String type_of_enterprise) {
this.type_of_enterprise = type_of_enterprise;
}
public String getBusiness_scope() {
return business_scope;
}
public void setBusiness_scope(String business_scope) {
this.business_scope = business_scope;
}
public String getRegistered_capital() {
return registered_capital;
}
public void setRegistered_capital(String registered_capital) {
this.registered_capital = registered_capital;
}
public String getPaid_in_capital() {
return paid_in_capital;
}
public void setPaid_in_capital(String paid_in_capital) {
this.paid_in_capital = paid_in_capital;
}
public String getValid_period() {
return valid_period;
}
public void setValid_period(String valid_period) {
this.valid_period = valid_period;
}
public String getRegistered_date() {
return registered_date;
}
public void setRegistered_date(String registered_date) {
this.registered_date = registered_date;
}
public String getCert_position() {
return cert_position;
}
public void setCert_position(String cert_position) {
this.cert_position = cert_position;
}
public String getImg_size() {
return img_size;
}
public void setImg_size(String img_size) {
this.img_size = img_size;
}
}