85efb9047dc67ed198b9097bd415a758514b1c16.svn-base
1.17 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
/**
* Copyright © 2015-2018 ODM All rights reserved.
*/
package com.thinkgem.jeesite.modules.reg.entity.bus;
import com.thinkgem.jeesite.common.persistence.DataEntity;
/**
* 已登记信息和房屋不动产单元号关联实体
* @author xuyg
* @version 2015-10-15
*/
public class RegBusBdcqzsdjxxRelationFwBdcdyh extends DataEntity<RegBusBdcqzsdjxxRelationFwBdcdyh> {
private static final long serialVersionUID = 1L;
private String ywh; // 业务号
private String mainid; // 已登记信息ID
private String fwid; // 新生成房屋不动产单元号
private String ismall; //是否小证
public RegBusBdcqzsdjxxRelationFwBdcdyh() {
super();
}
public RegBusBdcqzsdjxxRelationFwBdcdyh(String id){
super(id);
}
public String getYwh() {
return ywh;
}
public void setYwh(String ywh) {
this.ywh = ywh;
}
public String getMainid() {
return mainid;
}
public void setMainid(String mainid) {
this.mainid = mainid;
}
public String getFwid() {
return fwid;
}
public void setFwid(String fwid) {
this.fwid = fwid;
}
public String getIsmall() {
return ismall;
}
public void setIsmall(String ismall) {
this.ismall = ismall;
}
}