| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import java.io.Serializable;
- /**
- * 取水口填报对象
- *
- * @author zhangcheng
- * @date 2019/11/27 15:13
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspOffLineWiuRgeister extends BaseBean implements Serializable {
- //BIS_INSP_WIU_RGSTR
- private AttWiuBase base;//取用水户基础信息表 ATT_WIU_BASE
- private BisInspWiuRgstr bisInspWiuRgstr;// 取水建管情况登记表 BIS_INSP_WIU_RGSTR
- private BisInspWiuRgstrIntInfo bisInspWiuRgstrIntInfo;//取水口取水及监管情况检查表 BIS_INSP_WIU_RGSTR_INT_INFO
- public BisInspOffLineWiuRgeister() {
- }
- public AttWiuBase getBase() {
- return base;
- }
- public void setBase(AttWiuBase base) {
- this.base = base;
- }
- public BisInspWiuRgstr getBisInspWiuRgstr() {
- return bisInspWiuRgstr;
- }
- public void setBisInspWiuRgstr(BisInspWiuRgstr bisInspWiuRgstr) {
- this.bisInspWiuRgstr = bisInspWiuRgstr;
- }
- public BisInspWiuRgstrIntInfo getBisInspWiuRgstrIntInfo() {
- return bisInspWiuRgstrIntInfo;
- }
- public void setBisInspWiuRgstrIntInfo(BisInspWiuRgstrIntInfo bisInspWiuRgstrIntInfo) {
- this.bisInspWiuRgstrIntInfo = bisInspWiuRgstrIntInfo;
- }
- }
|