4efc9d0025522eb57607f73c28628e645897b641.svn-base
955 Bytes
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
/**
* 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 RegBusQlrRelationYwh extends DataEntity<RegBusQlrRelationYwh> {
private static final long serialVersionUID = 1L;
private String ywh; // 要素代码
private String qlrid; // 不动产单元号
private String isuse; // 权利人名称
public RegBusQlrRelationYwh() {
super();
}
public RegBusQlrRelationYwh(String id){
super(id);
}
public String getYwh() {
return ywh;
}
public void setYwh(String ywh) {
this.ywh = ywh;
}
public String getQlrid() {
return qlrid;
}
public void setQlrid(String qlrid) {
this.qlrid = qlrid;
}
public String getIsuse() {
return isuse;
}
public void setIsuse(String isuse) {
this.isuse = isuse;
}
}