ElecLicenseInfo.java
3.83 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
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
223
224
225
226
227
228
229
230
package com.thinkgem.jeesite.modules.eci.entity;
import java.util.Date;
/**
* 电子证照表实体
*/
public class ElecLicenseInfo {
/**
* 合同标识,主键,自己生成
*/
private String bizId;
/**
* 合同ID
*/
private Long contractId;
/**
* 模板参数
*/
private String documentParam;
/**
* 合同文档ID
*/
private String documentId;
/**
* 合同类型.1:不动产登记证明.2:不动产权证书.3:不动产查询证明
*/
private String htlx;
/**
* 业务号
*/
private String ywh;
/**
* 证书标识
*/
private String zsbs;
/**
* 提交参数
*/
private String tjcs;
/**
* 返回结果
*/
private String fhjg;
/**
* 推送状态
*/
private String tszt;
/**
* 合同状态(DRAFT:草稿,FILLING:拟定中,SIGNING:签署中,COMPLETE:已完成,REJECTED:已退回,RECALLED:已撤回,EXPIRED:已过期,TERMINATING:作废中,TERMINATED:已作废,DELETE:已删除,FINISHED:强制完成)
*/
private String htzt;
/**
* 推送时间
*/
private Date tssj;
/**
* 是否下载 1是2否
*/
private String sfxz;
/**
* ofd文件地址
*/
private String ofdWjdz;
/**
* 是否转换1是2否
*/
private String sfzh;
/**
* jpg文件地址
*/
private String jpgWjdz;
/**
* 备注
*/
private String bz;
public String getBizId() {
return bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
}
public Long getContractId() {
return contractId;
}
public void setContractId(Long contractId) {
this.contractId = contractId;
}
public String getDocumentParam() {
return documentParam;
}
public void setDocumentParam(String documentParam) {
this.documentParam = documentParam;
}
public String getDocumentId() {
return documentId;
}
public void setDocumentId(String documentId) {
this.documentId = documentId;
}
public String getHtlx() {
return htlx;
}
public void setHtlx(String htlx) {
this.htlx = htlx;
}
public String getYwh() {
return ywh;
}
public void setYwh(String ywh) {
this.ywh = ywh;
}
public String getZsbs() {
return zsbs;
}
public void setZsbs(String zsbs) {
this.zsbs = zsbs;
}
public String getTjcs() {
return tjcs;
}
public void setTjcs(String tjcs) {
this.tjcs = tjcs;
}
public String getFhjg() {
return fhjg;
}
public void setFhjg(String fhjg) {
this.fhjg = fhjg;
}
public String getTszt() {
return tszt;
}
public void setTszt(String tszt) {
this.tszt = tszt;
}
public String getHtzt() {
return htzt;
}
public void setHtzt(String htzt) {
this.htzt = htzt;
}
public Date getTssj() {
return tssj;
}
public void setTssj(Date tssj) {
this.tssj = tssj;
}
public String getSfxz() {
return sfxz;
}
public void setSfxz(String sfxz) {
this.sfxz = sfxz;
}
public String getOfdWjdz() {
return ofdWjdz;
}
public void setOfdWjdz(String ofdWjdz) {
this.ofdWjdz = ofdWjdz;
}
public String getSfzh() {
return sfzh;
}
public void setSfzh(String sfzh) {
this.sfzh = sfzh;
}
public String getJpgWjdz() {
return jpgWjdz;
}
public void setJpgWjdz(String jpgWjdz) {
this.jpgWjdz = jpgWjdz;
}
public String getBz() {
return bz;
}
public void setBz(String bz) {
this.bz = bz;
}
}