6356815e94b9051cde440686dbf513d92ab0a4ca.svn-base
841 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
/**
* 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 RegBusZdjbxxRelationYwh extends DataEntity<RegBusZdjbxxRelationYwh> {
private static final long serialVersionUID = 1L;
private String ywh; // 要素代码
private String zdjbxxid; // 不动产单元号
public RegBusZdjbxxRelationYwh() {
super();
}
public RegBusZdjbxxRelationYwh(String id){
super(id);
}
public String getYwh() {
return ywh;
}
public void setYwh(String ywh) {
this.ywh = ywh;
}
public String getZdjbxxid() {
return zdjbxxid;
}
public void setZdjbxxid(String zdjbxxid) {
this.zdjbxxid = zdjbxxid;
}
}