瀏覽代碼

不动产登记证信息

wangjinsheng 3 年之前
父節點
當前提交
e563f87f71

+ 126 - 0
mybusiness/src/main/java/com/sooka/system/controller/TGuijiNaturalresourcesBdcdjzxxController.java

@@ -0,0 +1,126 @@
+package com.sooka.system.controller;
+
+import java.util.List;
+import com.sooka.common.annotation.Log;
+import com.sooka.common.core.controller.BaseController;
+import com.sooka.common.core.domain.AjaxResult;
+import com.sooka.common.core.page.TableDataInfo;
+import com.sooka.common.enums.BusinessType;
+import com.sooka.common.utils.poi.ExcelUtil;
+import org.apache.shiro.authz.annotation.RequiresPermissions;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Controller;
+import org.springframework.ui.ModelMap;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+import com.sooka.system.domain.TGuijiNaturalresourcesBdcdjzxx;
+import com.sooka.system.service.ITGuijiNaturalresourcesBdcdjzxxService;
+
+/**
+ * 不动产登记证信息Controller
+ * 
+ * @author lei
+ * @date 2021-10-29
+ */
+@Controller
+@RequestMapping("/system/bdcdjzxx")
+public class TGuijiNaturalresourcesBdcdjzxxController extends BaseController
+{
+    private String prefix = "system/bdcdjzxx";
+
+    @Autowired
+    private ITGuijiNaturalresourcesBdcdjzxxService tGuijiNaturalresourcesBdcdjzxxService;
+
+    @RequiresPermissions("system:bdcdjzxx:view")
+    @GetMapping()
+    public String bdcdjzxx()
+    {
+        return prefix + "/bdcdjzxx";
+    }
+
+    /**
+     * 查询不动产登记证信息列表
+     */
+    @RequiresPermissions("system:bdcdjzxx:list")
+    @PostMapping("/list")
+    @ResponseBody
+    public TableDataInfo list(TGuijiNaturalresourcesBdcdjzxx tGuijiNaturalresourcesBdcdjzxx)
+    {
+        startPage();
+        List<TGuijiNaturalresourcesBdcdjzxx> list = tGuijiNaturalresourcesBdcdjzxxService.selectTGuijiNaturalresourcesBdcdjzxxList(tGuijiNaturalresourcesBdcdjzxx);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出不动产登记证信息列表
+     */
+    @RequiresPermissions("system:bdcdjzxx:export")
+    @Log(title = "不动产登记证信息", businessType = BusinessType.EXPORT)
+    @PostMapping("/export")
+    @ResponseBody
+    public AjaxResult export(TGuijiNaturalresourcesBdcdjzxx tGuijiNaturalresourcesBdcdjzxx)
+    {
+        List<TGuijiNaturalresourcesBdcdjzxx> list = tGuijiNaturalresourcesBdcdjzxxService.selectTGuijiNaturalresourcesBdcdjzxxList(tGuijiNaturalresourcesBdcdjzxx);
+        ExcelUtil<TGuijiNaturalresourcesBdcdjzxx> util = new ExcelUtil<TGuijiNaturalresourcesBdcdjzxx>(TGuijiNaturalresourcesBdcdjzxx.class);
+        return util.exportExcel(list, "bdcdjzxx");
+    }
+
+    /**
+     * 新增不动产登记证信息
+     */
+    @GetMapping("/add")
+    public String add()
+    {
+        return prefix + "/add";
+    }
+
+    /**
+     * 新增保存不动产登记证信息
+     */
+    @RequiresPermissions("system:bdcdjzxx:add")
+    @Log(title = "不动产登记证信息", businessType = BusinessType.INSERT)
+    @PostMapping("/add")
+    @ResponseBody
+    public AjaxResult addSave(TGuijiNaturalresourcesBdcdjzxx tGuijiNaturalresourcesBdcdjzxx)
+    {
+        return toAjax(tGuijiNaturalresourcesBdcdjzxxService.insertTGuijiNaturalresourcesBdcdjzxx(tGuijiNaturalresourcesBdcdjzxx));
+    }
+
+    /**
+     * 修改不动产登记证信息
+     */
+    @GetMapping("/edit/{id}")
+    public String edit(@PathVariable("id") String id, ModelMap mmap)
+    {
+        TGuijiNaturalresourcesBdcdjzxx tGuijiNaturalresourcesBdcdjzxx = tGuijiNaturalresourcesBdcdjzxxService.selectTGuijiNaturalresourcesBdcdjzxxById(id);
+        mmap.put("tGuijiNaturalresourcesBdcdjzxx", tGuijiNaturalresourcesBdcdjzxx);
+        return prefix + "/edit";
+    }
+
+    /**
+     * 修改保存不动产登记证信息
+     */
+    @RequiresPermissions("system:bdcdjzxx:edit")
+    @Log(title = "不动产登记证信息", businessType = BusinessType.UPDATE)
+    @PostMapping("/edit")
+    @ResponseBody
+    public AjaxResult editSave(TGuijiNaturalresourcesBdcdjzxx tGuijiNaturalresourcesBdcdjzxx)
+    {
+        return toAjax(tGuijiNaturalresourcesBdcdjzxxService.updateTGuijiNaturalresourcesBdcdjzxx(tGuijiNaturalresourcesBdcdjzxx));
+    }
+
+    /**
+     * 删除不动产登记证信息
+     */
+    @RequiresPermissions("system:bdcdjzxx:remove")
+    @Log(title = "不动产登记证信息", businessType = BusinessType.DELETE)
+    @PostMapping( "/remove")
+    @ResponseBody
+    public AjaxResult remove(String ids)
+    {
+        return toAjax(tGuijiNaturalresourcesBdcdjzxxService.deleteTGuijiNaturalresourcesBdcdjzxxByIds(ids));
+    }
+}

+ 696 - 0
mybusiness/src/main/java/com/sooka/system/domain/TGuijiNaturalresourcesBdcdjzxx.java

@@ -0,0 +1,696 @@
+package com.sooka.system.domain;
+
+import com.sooka.common.annotation.Excel;
+import com.sooka.common.core.domain.BaseEntity;
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+
+/**
+ * 不动产登记证信息对象 t_guiji_naturalresources_bdcdjzxx
+ * 
+ * @author lei
+ * @date 2021-10-29
+ */
+public class TGuijiNaturalresourcesBdcdjzxx extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 序号 */
+    private String id;
+
+    /** 推送时间 */
+    @Excel(name = "推送时间")
+    private String cdTime;
+
+    /** 批次号 */
+    @Excel(name = "批次号")
+    private String cdBatch;
+
+    /** 操作状态 */
+    @Excel(name = "操作状态")
+    private String cdOperation;
+
+    /** 数据来源 */
+    @Excel(name = "数据来源")
+    private String cdSource;
+
+    /** 登记编号 */
+    @Excel(name = "登记编号")
+    private String djbh;
+
+    /** 权利人 */
+    @Excel(name = "权利人")
+    private String qlrmc;
+
+    /** 共有方式 */
+    @Excel(name = "共有方式")
+    private String gyfs;
+
+    /** 坐落 */
+    @Excel(name = "坐落")
+    private String fwzl;
+
+    /** 不动产单元号 */
+    @Excel(name = "不动产单元号")
+    private String bdcdyh;
+
+    /** 证书编号 */
+    @Excel(name = "证书编号")
+    private String zsbh;
+
+    /** 用途 */
+    @Excel(name = "用途")
+    private String yt;
+
+    /** 面积/抵押总面积 */
+    @Excel(name = "面积/抵押总面积")
+    private String mj;
+
+    /** 权证号 */
+    @Excel(name = "权证号")
+    private String qzh;
+
+    /** 附记 */
+    @Excel(name = "附记")
+    private String bz;
+
+    /** 推送单位 */
+    @Excel(name = "推送单位")
+    private String tsdw;
+
+    /** 房屋性质 */
+    @Excel(name = "房屋性质")
+    private String fwxz;
+
+    /** 登记日期 */
+    @Excel(name = "登记日期")
+    private String dbsj;
+
+    /** 抵押权人 */
+    @Excel(name = "抵押权人")
+    private String dyqr;
+
+    /** 抵押人 */
+    @Excel(name = "抵押人")
+    private String dyr;
+
+    /** 抵押总套数 */
+    @Excel(name = "抵押总套数")
+    private String dyzts;
+
+    /** 债权金额 */
+    @Excel(name = "债权金额")
+    private String cqje;
+
+    /** 债务履行起始 */
+    @Excel(name = "债务履行起始")
+    private String zwlxqs;
+
+    /** 债务履行终止 */
+    @Excel(name = "债务履行终止")
+    private String zwlxqz;
+
+    /** 他项权证号 */
+    @Excel(name = "他项权证号")
+    private String txqzh;
+
+    /** 抵押预告登记权利人 */
+    @Excel(name = "抵押预告登记权利人")
+    private String dyygqlr;
+
+    /** 抵押预告登记义务人 */
+    @Excel(name = "抵押预告登记义务人")
+    private String dyygywr;
+
+    /** 抵押预告证明号 */
+    @Excel(name = "抵押预告证明号")
+    private String dyygzmh;
+
+    /** 抵押预告登记类型 */
+    @Excel(name = "抵押预告登记类型")
+    private String dyygdjlx;
+
+    /** 预告登记权利人 */
+    @Excel(name = "预告登记权利人")
+    private String ygqlr;
+
+    /** 预告登记义务人 */
+    @Excel(name = "预告登记义务人")
+    private String ygywr;
+
+    /** 预告证明号 */
+    @Excel(name = "预告证明号")
+    private String ygzmh;
+
+    /** 预告登记类型 */
+    @Excel(name = "预告登记类型")
+    private String ygdjlx;
+
+    /** 层次 */
+    @Excel(name = "层次")
+    private String cs;
+
+    /** 结构 */
+    @Excel(name = "结构")
+    private String fwjg;
+
+    /** 房号 */
+    @Excel(name = "房号")
+    private String hh;
+
+    /** 总层数 */
+    @Excel(name = "总层数")
+    private String zcs;
+
+    /** 所在层 */
+    @Excel(name = "所在层")
+    private String szc;
+
+    /** 建筑面积 */
+    @Excel(name = "建筑面积")
+    private String scjzmj;
+
+    /** 套内面积 */
+    @Excel(name = "套内面积")
+    private String sczyjzmj;
+
+    /** 分摊面积 */
+    @Excel(name = "分摊面积")
+    private String scftjzmj;
+
+    /** 土地性质 */
+    @Excel(name = "土地性质")
+    private String xz;
+
+    /** 土地使用取得方式 */
+    @Excel(name = "土地使用取得方式")
+    private String lx;
+
+    /** 土地用途 */
+    @Excel(name = "土地用途")
+    private String tdyt;
+
+    /** 土地使用开始 */
+    @Excel(name = "土地使用开始")
+    private String tdsyqxks;
+
+    /** 土地使用结束 */
+    @Excel(name = "土地使用结束")
+    private String tdsyqxjs;
+
+    /** 业务类型 */
+    @Excel(name = "业务类型")
+    private String ywms;
+
+    /** 证书名称 */
+    @Excel(name = "证书名称")
+    private String zsmc;
+
+    public void setId(String id) 
+    {
+        this.id = id;
+    }
+
+    public String getId() 
+    {
+        return id;
+    }
+    public void setCdTime(String cdTime) 
+    {
+        this.cdTime = cdTime;
+    }
+
+    public String getCdTime() 
+    {
+        return cdTime;
+    }
+    public void setCdBatch(String cdBatch) 
+    {
+        this.cdBatch = cdBatch;
+    }
+
+    public String getCdBatch() 
+    {
+        return cdBatch;
+    }
+    public void setCdOperation(String cdOperation) 
+    {
+        this.cdOperation = cdOperation;
+    }
+
+    public String getCdOperation() 
+    {
+        return cdOperation;
+    }
+    public void setCdSource(String cdSource) 
+    {
+        this.cdSource = cdSource;
+    }
+
+    public String getCdSource() 
+    {
+        return cdSource;
+    }
+    public void setDjbh(String djbh) 
+    {
+        this.djbh = djbh;
+    }
+
+    public String getDjbh() 
+    {
+        return djbh;
+    }
+    public void setQlrmc(String qlrmc) 
+    {
+        this.qlrmc = qlrmc;
+    }
+
+    public String getQlrmc() 
+    {
+        return qlrmc;
+    }
+    public void setGyfs(String gyfs) 
+    {
+        this.gyfs = gyfs;
+    }
+
+    public String getGyfs() 
+    {
+        return gyfs;
+    }
+    public void setFwzl(String fwzl) 
+    {
+        this.fwzl = fwzl;
+    }
+
+    public String getFwzl() 
+    {
+        return fwzl;
+    }
+    public void setBdcdyh(String bdcdyh) 
+    {
+        this.bdcdyh = bdcdyh;
+    }
+
+    public String getBdcdyh() 
+    {
+        return bdcdyh;
+    }
+    public void setZsbh(String zsbh) 
+    {
+        this.zsbh = zsbh;
+    }
+
+    public String getZsbh() 
+    {
+        return zsbh;
+    }
+    public void setYt(String yt) 
+    {
+        this.yt = yt;
+    }
+
+    public String getYt() 
+    {
+        return yt;
+    }
+    public void setMj(String mj) 
+    {
+        this.mj = mj;
+    }
+
+    public String getMj() 
+    {
+        return mj;
+    }
+    public void setQzh(String qzh) 
+    {
+        this.qzh = qzh;
+    }
+
+    public String getQzh() 
+    {
+        return qzh;
+    }
+    public void setBz(String bz) 
+    {
+        this.bz = bz;
+    }
+
+    public String getBz() 
+    {
+        return bz;
+    }
+    public void setTsdw(String tsdw) 
+    {
+        this.tsdw = tsdw;
+    }
+
+    public String getTsdw() 
+    {
+        return tsdw;
+    }
+    public void setFwxz(String fwxz) 
+    {
+        this.fwxz = fwxz;
+    }
+
+    public String getFwxz() 
+    {
+        return fwxz;
+    }
+    public void setDbsj(String dbsj) 
+    {
+        this.dbsj = dbsj;
+    }
+
+    public String getDbsj() 
+    {
+        return dbsj;
+    }
+    public void setDyqr(String dyqr) 
+    {
+        this.dyqr = dyqr;
+    }
+
+    public String getDyqr() 
+    {
+        return dyqr;
+    }
+    public void setDyr(String dyr) 
+    {
+        this.dyr = dyr;
+    }
+
+    public String getDyr() 
+    {
+        return dyr;
+    }
+    public void setDyzts(String dyzts) 
+    {
+        this.dyzts = dyzts;
+    }
+
+    public String getDyzts() 
+    {
+        return dyzts;
+    }
+    public void setCqje(String cqje) 
+    {
+        this.cqje = cqje;
+    }
+
+    public String getCqje() 
+    {
+        return cqje;
+    }
+    public void setZwlxqs(String zwlxqs) 
+    {
+        this.zwlxqs = zwlxqs;
+    }
+
+    public String getZwlxqs() 
+    {
+        return zwlxqs;
+    }
+    public void setZwlxqz(String zwlxqz) 
+    {
+        this.zwlxqz = zwlxqz;
+    }
+
+    public String getZwlxqz() 
+    {
+        return zwlxqz;
+    }
+    public void setTxqzh(String txqzh) 
+    {
+        this.txqzh = txqzh;
+    }
+
+    public String getTxqzh() 
+    {
+        return txqzh;
+    }
+    public void setDyygqlr(String dyygqlr) 
+    {
+        this.dyygqlr = dyygqlr;
+    }
+
+    public String getDyygqlr() 
+    {
+        return dyygqlr;
+    }
+    public void setDyygywr(String dyygywr) 
+    {
+        this.dyygywr = dyygywr;
+    }
+
+    public String getDyygywr() 
+    {
+        return dyygywr;
+    }
+    public void setDyygzmh(String dyygzmh) 
+    {
+        this.dyygzmh = dyygzmh;
+    }
+
+    public String getDyygzmh() 
+    {
+        return dyygzmh;
+    }
+    public void setDyygdjlx(String dyygdjlx) 
+    {
+        this.dyygdjlx = dyygdjlx;
+    }
+
+    public String getDyygdjlx() 
+    {
+        return dyygdjlx;
+    }
+    public void setYgqlr(String ygqlr) 
+    {
+        this.ygqlr = ygqlr;
+    }
+
+    public String getYgqlr() 
+    {
+        return ygqlr;
+    }
+    public void setYgywr(String ygywr) 
+    {
+        this.ygywr = ygywr;
+    }
+
+    public String getYgywr() 
+    {
+        return ygywr;
+    }
+    public void setYgzmh(String ygzmh) 
+    {
+        this.ygzmh = ygzmh;
+    }
+
+    public String getYgzmh() 
+    {
+        return ygzmh;
+    }
+    public void setYgdjlx(String ygdjlx) 
+    {
+        this.ygdjlx = ygdjlx;
+    }
+
+    public String getYgdjlx() 
+    {
+        return ygdjlx;
+    }
+    public void setCs(String cs) 
+    {
+        this.cs = cs;
+    }
+
+    public String getCs() 
+    {
+        return cs;
+    }
+    public void setFwjg(String fwjg) 
+    {
+        this.fwjg = fwjg;
+    }
+
+    public String getFwjg() 
+    {
+        return fwjg;
+    }
+    public void setHh(String hh) 
+    {
+        this.hh = hh;
+    }
+
+    public String getHh() 
+    {
+        return hh;
+    }
+    public void setZcs(String zcs) 
+    {
+        this.zcs = zcs;
+    }
+
+    public String getZcs() 
+    {
+        return zcs;
+    }
+    public void setSzc(String szc) 
+    {
+        this.szc = szc;
+    }
+
+    public String getSzc() 
+    {
+        return szc;
+    }
+    public void setScjzmj(String scjzmj) 
+    {
+        this.scjzmj = scjzmj;
+    }
+
+    public String getScjzmj() 
+    {
+        return scjzmj;
+    }
+    public void setSczyjzmj(String sczyjzmj) 
+    {
+        this.sczyjzmj = sczyjzmj;
+    }
+
+    public String getSczyjzmj() 
+    {
+        return sczyjzmj;
+    }
+    public void setScftjzmj(String scftjzmj) 
+    {
+        this.scftjzmj = scftjzmj;
+    }
+
+    public String getScftjzmj() 
+    {
+        return scftjzmj;
+    }
+    public void setXz(String xz) 
+    {
+        this.xz = xz;
+    }
+
+    public String getXz() 
+    {
+        return xz;
+    }
+    public void setLx(String lx) 
+    {
+        this.lx = lx;
+    }
+
+    public String getLx() 
+    {
+        return lx;
+    }
+    public void setTdyt(String tdyt) 
+    {
+        this.tdyt = tdyt;
+    }
+
+    public String getTdyt() 
+    {
+        return tdyt;
+    }
+    public void setTdsyqxks(String tdsyqxks) 
+    {
+        this.tdsyqxks = tdsyqxks;
+    }
+
+    public String getTdsyqxks() 
+    {
+        return tdsyqxks;
+    }
+    public void setTdsyqxjs(String tdsyqxjs) 
+    {
+        this.tdsyqxjs = tdsyqxjs;
+    }
+
+    public String getTdsyqxjs() 
+    {
+        return tdsyqxjs;
+    }
+    public void setYwms(String ywms) 
+    {
+        this.ywms = ywms;
+    }
+
+    public String getYwms() 
+    {
+        return ywms;
+    }
+    public void setZsmc(String zsmc) 
+    {
+        this.zsmc = zsmc;
+    }
+
+    public String getZsmc() 
+    {
+        return zsmc;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("createTime", getCreateTime())
+            .append("cdTime", getCdTime())
+            .append("cdBatch", getCdBatch())
+            .append("cdOperation", getCdOperation())
+            .append("cdSource", getCdSource())
+            .append("djbh", getDjbh())
+            .append("qlrmc", getQlrmc())
+            .append("gyfs", getGyfs())
+            .append("fwzl", getFwzl())
+            .append("bdcdyh", getBdcdyh())
+            .append("zsbh", getZsbh())
+            .append("yt", getYt())
+            .append("mj", getMj())
+            .append("qzh", getQzh())
+            .append("bz", getBz())
+            .append("tsdw", getTsdw())
+            .append("fwxz", getFwxz())
+            .append("dbsj", getDbsj())
+            .append("dyqr", getDyqr())
+            .append("dyr", getDyr())
+            .append("dyzts", getDyzts())
+            .append("cqje", getCqje())
+            .append("zwlxqs", getZwlxqs())
+            .append("zwlxqz", getZwlxqz())
+            .append("txqzh", getTxqzh())
+            .append("dyygqlr", getDyygqlr())
+            .append("dyygywr", getDyygywr())
+            .append("dyygzmh", getDyygzmh())
+            .append("dyygdjlx", getDyygdjlx())
+            .append("ygqlr", getYgqlr())
+            .append("ygywr", getYgywr())
+            .append("ygzmh", getYgzmh())
+            .append("ygdjlx", getYgdjlx())
+            .append("cs", getCs())
+            .append("fwjg", getFwjg())
+            .append("hh", getHh())
+            .append("zcs", getZcs())
+            .append("szc", getSzc())
+            .append("scjzmj", getScjzmj())
+            .append("sczyjzmj", getSczyjzmj())
+            .append("scftjzmj", getScftjzmj())
+            .append("xz", getXz())
+            .append("lx", getLx())
+            .append("tdyt", getTdyt())
+            .append("tdsyqxks", getTdsyqxks())
+            .append("tdsyqxjs", getTdsyqxjs())
+            .append("ywms", getYwms())
+            .append("zsmc", getZsmc())
+            .toString();
+    }
+}

+ 61 - 0
mybusiness/src/main/java/com/sooka/system/mapper/TGuijiNaturalresourcesBdcdjzxxMapper.java

@@ -0,0 +1,61 @@
+package com.sooka.system.mapper;
+
+import java.util.List;
+import com.sooka.system.domain.TGuijiNaturalresourcesBdcdjzxx;
+
+/**
+ * 不动产登记证信息Mapper接口
+ * 
+ * @author lei
+ * @date 2021-10-29
+ */
+public interface TGuijiNaturalresourcesBdcdjzxxMapper 
+{
+    /**
+     * 查询不动产登记证信息
+     * 
+     * @param id 不动产登记证信息ID
+     * @return 不动产登记证信息
+     */
+    public TGuijiNaturalresourcesBdcdjzxx selectTGuijiNaturalresourcesBdcdjzxxById(String id);
+
+    /**
+     * 查询不动产登记证信息列表
+     * 
+     * @param tGuijiNaturalresourcesBdcdjzxx 不动产登记证信息
+     * @return 不动产登记证信息集合
+     */
+    public List<TGuijiNaturalresourcesBdcdjzxx> selectTGuijiNaturalresourcesBdcdjzxxList(TGuijiNaturalresourcesBdcdjzxx tGuijiNaturalresourcesBdcdjzxx);
+
+    /**
+     * 新增不动产登记证信息
+     * 
+     * @param tGuijiNaturalresourcesBdcdjzxx 不动产登记证信息
+     * @return 结果
+     */
+    public int insertTGuijiNaturalresourcesBdcdjzxx(TGuijiNaturalresourcesBdcdjzxx tGuijiNaturalresourcesBdcdjzxx);
+
+    /**
+     * 修改不动产登记证信息
+     * 
+     * @param tGuijiNaturalresourcesBdcdjzxx 不动产登记证信息
+     * @return 结果
+     */
+    public int updateTGuijiNaturalresourcesBdcdjzxx(TGuijiNaturalresourcesBdcdjzxx tGuijiNaturalresourcesBdcdjzxx);
+
+    /**
+     * 删除不动产登记证信息
+     * 
+     * @param id 不动产登记证信息ID
+     * @return 结果
+     */
+    public int deleteTGuijiNaturalresourcesBdcdjzxxById(String id);
+
+    /**
+     * 批量删除不动产登记证信息
+     * 
+     * @param ids 需要删除的数据ID
+     * @return 结果
+     */
+    public int deleteTGuijiNaturalresourcesBdcdjzxxByIds(String[] ids);
+}

+ 61 - 0
mybusiness/src/main/java/com/sooka/system/service/ITGuijiNaturalresourcesBdcdjzxxService.java

@@ -0,0 +1,61 @@
+package com.sooka.system.service;
+
+import java.util.List;
+import com.sooka.system.domain.TGuijiNaturalresourcesBdcdjzxx;
+
+/**
+ * 不动产登记证信息Service接口
+ * 
+ * @author lei
+ * @date 2021-10-29
+ */
+public interface ITGuijiNaturalresourcesBdcdjzxxService 
+{
+    /**
+     * 查询不动产登记证信息
+     * 
+     * @param id 不动产登记证信息ID
+     * @return 不动产登记证信息
+     */
+    public TGuijiNaturalresourcesBdcdjzxx selectTGuijiNaturalresourcesBdcdjzxxById(String id);
+
+    /**
+     * 查询不动产登记证信息列表
+     * 
+     * @param tGuijiNaturalresourcesBdcdjzxx 不动产登记证信息
+     * @return 不动产登记证信息集合
+     */
+    public List<TGuijiNaturalresourcesBdcdjzxx> selectTGuijiNaturalresourcesBdcdjzxxList(TGuijiNaturalresourcesBdcdjzxx tGuijiNaturalresourcesBdcdjzxx);
+
+    /**
+     * 新增不动产登记证信息
+     * 
+     * @param tGuijiNaturalresourcesBdcdjzxx 不动产登记证信息
+     * @return 结果
+     */
+    public int insertTGuijiNaturalresourcesBdcdjzxx(TGuijiNaturalresourcesBdcdjzxx tGuijiNaturalresourcesBdcdjzxx);
+
+    /**
+     * 修改不动产登记证信息
+     * 
+     * @param tGuijiNaturalresourcesBdcdjzxx 不动产登记证信息
+     * @return 结果
+     */
+    public int updateTGuijiNaturalresourcesBdcdjzxx(TGuijiNaturalresourcesBdcdjzxx tGuijiNaturalresourcesBdcdjzxx);
+
+    /**
+     * 批量删除不动产登记证信息
+     * 
+     * @param ids 需要删除的数据ID
+     * @return 结果
+     */
+    public int deleteTGuijiNaturalresourcesBdcdjzxxByIds(String ids);
+
+    /**
+     * 删除不动产登记证信息信息
+     * 
+     * @param id 不动产登记证信息ID
+     * @return 结果
+     */
+    public int deleteTGuijiNaturalresourcesBdcdjzxxById(String id);
+}

+ 97 - 0
mybusiness/src/main/java/com/sooka/system/service/impl/TGuijiNaturalresourcesBdcdjzxxServiceImpl.java

@@ -0,0 +1,97 @@
+package com.sooka.system.service.impl;
+
+import java.util.List;
+
+import com.sooka.common.core.text.Convert;
+import com.sooka.common.utils.DateUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.sooka.system.mapper.TGuijiNaturalresourcesBdcdjzxxMapper;
+import com.sooka.system.domain.TGuijiNaturalresourcesBdcdjzxx;
+import com.sooka.system.service.ITGuijiNaturalresourcesBdcdjzxxService;
+
+/**
+ * 不动产登记证信息Service业务层处理
+ * 
+ * @author lei
+ * @date 2021-10-29
+ */
+@Service
+public class TGuijiNaturalresourcesBdcdjzxxServiceImpl implements ITGuijiNaturalresourcesBdcdjzxxService 
+{
+    @Autowired
+    private TGuijiNaturalresourcesBdcdjzxxMapper tGuijiNaturalresourcesBdcdjzxxMapper;
+
+    /**
+     * 查询不动产登记证信息
+     * 
+     * @param id 不动产登记证信息ID
+     * @return 不动产登记证信息
+     */
+    @Override
+    public TGuijiNaturalresourcesBdcdjzxx selectTGuijiNaturalresourcesBdcdjzxxById(String id)
+    {
+        return tGuijiNaturalresourcesBdcdjzxxMapper.selectTGuijiNaturalresourcesBdcdjzxxById(id);
+    }
+
+    /**
+     * 查询不动产登记证信息列表
+     * 
+     * @param tGuijiNaturalresourcesBdcdjzxx 不动产登记证信息
+     * @return 不动产登记证信息
+     */
+    @Override
+    public List<TGuijiNaturalresourcesBdcdjzxx> selectTGuijiNaturalresourcesBdcdjzxxList(TGuijiNaturalresourcesBdcdjzxx tGuijiNaturalresourcesBdcdjzxx)
+    {
+        return tGuijiNaturalresourcesBdcdjzxxMapper.selectTGuijiNaturalresourcesBdcdjzxxList(tGuijiNaturalresourcesBdcdjzxx);
+    }
+
+    /**
+     * 新增不动产登记证信息
+     * 
+     * @param tGuijiNaturalresourcesBdcdjzxx 不动产登记证信息
+     * @return 结果
+     */
+    @Override
+    public int insertTGuijiNaturalresourcesBdcdjzxx(TGuijiNaturalresourcesBdcdjzxx tGuijiNaturalresourcesBdcdjzxx)
+    {
+        tGuijiNaturalresourcesBdcdjzxx.setCreateTime(DateUtils.getNowDate());
+        return tGuijiNaturalresourcesBdcdjzxxMapper.insertTGuijiNaturalresourcesBdcdjzxx(tGuijiNaturalresourcesBdcdjzxx);
+    }
+
+    /**
+     * 修改不动产登记证信息
+     * 
+     * @param tGuijiNaturalresourcesBdcdjzxx 不动产登记证信息
+     * @return 结果
+     */
+    @Override
+    public int updateTGuijiNaturalresourcesBdcdjzxx(TGuijiNaturalresourcesBdcdjzxx tGuijiNaturalresourcesBdcdjzxx)
+    {
+        return tGuijiNaturalresourcesBdcdjzxxMapper.updateTGuijiNaturalresourcesBdcdjzxx(tGuijiNaturalresourcesBdcdjzxx);
+    }
+
+    /**
+     * 删除不动产登记证信息对象
+     * 
+     * @param ids 需要删除的数据ID
+     * @return 结果
+     */
+    @Override
+    public int deleteTGuijiNaturalresourcesBdcdjzxxByIds(String ids)
+    {
+        return tGuijiNaturalresourcesBdcdjzxxMapper.deleteTGuijiNaturalresourcesBdcdjzxxByIds(Convert.toStrArray(ids));
+    }
+
+    /**
+     * 删除不动产登记证信息信息
+     * 
+     * @param id 不动产登记证信息ID
+     * @return 结果
+     */
+    @Override
+    public int deleteTGuijiNaturalresourcesBdcdjzxxById(String id)
+    {
+        return tGuijiNaturalresourcesBdcdjzxxMapper.deleteTGuijiNaturalresourcesBdcdjzxxById(id);
+    }
+}

+ 251 - 0
mybusiness/src/main/resources/mapper/system/TGuijiNaturalresourcesBdcdjzxxMapper.xml

@@ -0,0 +1,251 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.sooka.system.mapper.TGuijiNaturalresourcesBdcdjzxxMapper">
+    
+    <resultMap type="TGuijiNaturalresourcesBdcdjzxx" id="TGuijiNaturalresourcesBdcdjzxxResult">
+        <result property="id"    column="id"    />
+        <result property="createTime"    column="create_time"    />
+        <result property="cdTime"    column="cd_time"    />
+        <result property="cdBatch"    column="cd_batch"    />
+        <result property="cdOperation"    column="cd_operation"    />
+        <result property="cdSource"    column="cd_source"    />
+        <result property="djbh"    column="djbh"    />
+        <result property="qlrmc"    column="qlrmc"    />
+        <result property="gyfs"    column="gyfs"    />
+        <result property="fwzl"    column="fwzl"    />
+        <result property="bdcdyh"    column="bdcdyh"    />
+        <result property="zsbh"    column="zsbh"    />
+        <result property="yt"    column="yt"    />
+        <result property="mj"    column="mj"    />
+        <result property="qzh"    column="qzh"    />
+        <result property="bz"    column="bz"    />
+        <result property="tsdw"    column="tsdw"    />
+        <result property="fwxz"    column="fwxz"    />
+        <result property="dbsj"    column="dbsj"    />
+        <result property="dyqr"    column="dyqr"    />
+        <result property="dyr"    column="dyr"    />
+        <result property="dyzts"    column="dyzts"    />
+        <result property="cqje"    column="cqje"    />
+        <result property="zwlxqs"    column="zwlxqs"    />
+        <result property="zwlxqz"    column="zwlxqz"    />
+        <result property="txqzh"    column="txqzh"    />
+        <result property="dyygqlr"    column="dyygqlr"    />
+        <result property="dyygywr"    column="dyygywr"    />
+        <result property="dyygzmh"    column="dyygzmh"    />
+        <result property="dyygdjlx"    column="dyygdjlx"    />
+        <result property="ygqlr"    column="ygqlr"    />
+        <result property="ygywr"    column="ygywr"    />
+        <result property="ygzmh"    column="ygzmh"    />
+        <result property="ygdjlx"    column="ygdjlx"    />
+        <result property="cs"    column="cs"    />
+        <result property="fwjg"    column="fwjg"    />
+        <result property="hh"    column="hh"    />
+        <result property="zcs"    column="zcs"    />
+        <result property="szc"    column="szc"    />
+        <result property="scjzmj"    column="scjzmj"    />
+        <result property="sczyjzmj"    column="sczyjzmj"    />
+        <result property="scftjzmj"    column="scftjzmj"    />
+        <result property="xz"    column="xz"    />
+        <result property="lx"    column="lx"    />
+        <result property="tdyt"    column="tdyt"    />
+        <result property="tdsyqxks"    column="tdsyqxks"    />
+        <result property="tdsyqxjs"    column="tdsyqxjs"    />
+        <result property="ywms"    column="ywms"    />
+        <result property="zsmc"    column="zsmc"    />
+    </resultMap>
+
+    <sql id="selectTGuijiNaturalresourcesBdcdjzxxVo">
+        select id, create_time, cd_time, cd_batch, cd_operation, cd_source, djbh, qlrmc, gyfs, fwzl, bdcdyh, zsbh, yt, mj, qzh, bz, tsdw, fwxz, dbsj, dyqr, dyr, dyzts, cqje, zwlxqs, zwlxqz, txqzh, dyygqlr, dyygywr, dyygzmh, dyygdjlx, ygqlr, ygywr, ygzmh, ygdjlx, cs, fwjg, hh, zcs, szc, scjzmj, sczyjzmj, scftjzmj, xz, lx, tdyt, tdsyqxks, tdsyqxjs, ywms, zsmc from t_guiji_naturalresources_bdcdjzxx
+    </sql>
+
+    <select id="selectTGuijiNaturalresourcesBdcdjzxxList" parameterType="TGuijiNaturalresourcesBdcdjzxx" resultMap="TGuijiNaturalresourcesBdcdjzxxResult">
+        <include refid="selectTGuijiNaturalresourcesBdcdjzxxVo"/>
+        <where>  
+            <if test="djbh != null  and djbh != ''"> and djbh like concat('%', #{djbh}, '%')</if>
+            <if test="qlrmc != null  and qlrmc != ''"> and qlrmc like concat('%', #{qlrmc}, '%')</if>
+            <if test="fwzl != null  and fwzl != ''"> and fwzl like concat('%', #{fwzl}, '%')</if>
+            <if test="zsbh != null  and zsbh != ''"> and zsbh = #{zsbh}</if>
+            <if test="qzh != null  and qzh != ''"> and qzh = #{qzh}</if>
+        </where>
+    </select>
+    
+    <select id="selectTGuijiNaturalresourcesBdcdjzxxById" parameterType="String" resultMap="TGuijiNaturalresourcesBdcdjzxxResult">
+        <include refid="selectTGuijiNaturalresourcesBdcdjzxxVo"/>
+        where id = #{id}
+    </select>
+        
+    <insert id="insertTGuijiNaturalresourcesBdcdjzxx" parameterType="TGuijiNaturalresourcesBdcdjzxx">
+        insert into t_guiji_naturalresources_bdcdjzxx
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="id != null">id,</if>
+            <if test="createTime != null">create_time,</if>
+            <if test="cdTime != null">cd_time,</if>
+            <if test="cdBatch != null">cd_batch,</if>
+            <if test="cdOperation != null">cd_operation,</if>
+            <if test="cdSource != null">cd_source,</if>
+            <if test="djbh != null">djbh,</if>
+            <if test="qlrmc != null">qlrmc,</if>
+            <if test="gyfs != null">gyfs,</if>
+            <if test="fwzl != null">fwzl,</if>
+            <if test="bdcdyh != null">bdcdyh,</if>
+            <if test="zsbh != null">zsbh,</if>
+            <if test="yt != null">yt,</if>
+            <if test="mj != null">mj,</if>
+            <if test="qzh != null">qzh,</if>
+            <if test="bz != null">bz,</if>
+            <if test="tsdw != null">tsdw,</if>
+            <if test="fwxz != null">fwxz,</if>
+            <if test="dbsj != null">dbsj,</if>
+            <if test="dyqr != null">dyqr,</if>
+            <if test="dyr != null">dyr,</if>
+            <if test="dyzts != null">dyzts,</if>
+            <if test="cqje != null">cqje,</if>
+            <if test="zwlxqs != null">zwlxqs,</if>
+            <if test="zwlxqz != null">zwlxqz,</if>
+            <if test="txqzh != null">txqzh,</if>
+            <if test="dyygqlr != null">dyygqlr,</if>
+            <if test="dyygywr != null">dyygywr,</if>
+            <if test="dyygzmh != null">dyygzmh,</if>
+            <if test="dyygdjlx != null">dyygdjlx,</if>
+            <if test="ygqlr != null">ygqlr,</if>
+            <if test="ygywr != null">ygywr,</if>
+            <if test="ygzmh != null">ygzmh,</if>
+            <if test="ygdjlx != null">ygdjlx,</if>
+            <if test="cs != null">cs,</if>
+            <if test="fwjg != null">fwjg,</if>
+            <if test="hh != null">hh,</if>
+            <if test="zcs != null">zcs,</if>
+            <if test="szc != null">szc,</if>
+            <if test="scjzmj != null">scjzmj,</if>
+            <if test="sczyjzmj != null">sczyjzmj,</if>
+            <if test="scftjzmj != null">scftjzmj,</if>
+            <if test="xz != null">xz,</if>
+            <if test="lx != null">lx,</if>
+            <if test="tdyt != null">tdyt,</if>
+            <if test="tdsyqxks != null">tdsyqxks,</if>
+            <if test="tdsyqxjs != null">tdsyqxjs,</if>
+            <if test="ywms != null">ywms,</if>
+            <if test="zsmc != null">zsmc,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="id != null">#{id},</if>
+            <if test="createTime != null">#{createTime},</if>
+            <if test="cdTime != null">#{cdTime},</if>
+            <if test="cdBatch != null">#{cdBatch},</if>
+            <if test="cdOperation != null">#{cdOperation},</if>
+            <if test="cdSource != null">#{cdSource},</if>
+            <if test="djbh != null">#{djbh},</if>
+            <if test="qlrmc != null">#{qlrmc},</if>
+            <if test="gyfs != null">#{gyfs},</if>
+            <if test="fwzl != null">#{fwzl},</if>
+            <if test="bdcdyh != null">#{bdcdyh},</if>
+            <if test="zsbh != null">#{zsbh},</if>
+            <if test="yt != null">#{yt},</if>
+            <if test="mj != null">#{mj},</if>
+            <if test="qzh != null">#{qzh},</if>
+            <if test="bz != null">#{bz},</if>
+            <if test="tsdw != null">#{tsdw},</if>
+            <if test="fwxz != null">#{fwxz},</if>
+            <if test="dbsj != null">#{dbsj},</if>
+            <if test="dyqr != null">#{dyqr},</if>
+            <if test="dyr != null">#{dyr},</if>
+            <if test="dyzts != null">#{dyzts},</if>
+            <if test="cqje != null">#{cqje},</if>
+            <if test="zwlxqs != null">#{zwlxqs},</if>
+            <if test="zwlxqz != null">#{zwlxqz},</if>
+            <if test="txqzh != null">#{txqzh},</if>
+            <if test="dyygqlr != null">#{dyygqlr},</if>
+            <if test="dyygywr != null">#{dyygywr},</if>
+            <if test="dyygzmh != null">#{dyygzmh},</if>
+            <if test="dyygdjlx != null">#{dyygdjlx},</if>
+            <if test="ygqlr != null">#{ygqlr},</if>
+            <if test="ygywr != null">#{ygywr},</if>
+            <if test="ygzmh != null">#{ygzmh},</if>
+            <if test="ygdjlx != null">#{ygdjlx},</if>
+            <if test="cs != null">#{cs},</if>
+            <if test="fwjg != null">#{fwjg},</if>
+            <if test="hh != null">#{hh},</if>
+            <if test="zcs != null">#{zcs},</if>
+            <if test="szc != null">#{szc},</if>
+            <if test="scjzmj != null">#{scjzmj},</if>
+            <if test="sczyjzmj != null">#{sczyjzmj},</if>
+            <if test="scftjzmj != null">#{scftjzmj},</if>
+            <if test="xz != null">#{xz},</if>
+            <if test="lx != null">#{lx},</if>
+            <if test="tdyt != null">#{tdyt},</if>
+            <if test="tdsyqxks != null">#{tdsyqxks},</if>
+            <if test="tdsyqxjs != null">#{tdsyqxjs},</if>
+            <if test="ywms != null">#{ywms},</if>
+            <if test="zsmc != null">#{zsmc},</if>
+         </trim>
+    </insert>
+
+    <update id="updateTGuijiNaturalresourcesBdcdjzxx" parameterType="TGuijiNaturalresourcesBdcdjzxx">
+        update t_guiji_naturalresources_bdcdjzxx
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="createTime != null">create_time = #{createTime},</if>
+            <if test="cdTime != null">cd_time = #{cdTime},</if>
+            <if test="cdBatch != null">cd_batch = #{cdBatch},</if>
+            <if test="cdOperation != null">cd_operation = #{cdOperation},</if>
+            <if test="cdSource != null">cd_source = #{cdSource},</if>
+            <if test="djbh != null">djbh = #{djbh},</if>
+            <if test="qlrmc != null">qlrmc = #{qlrmc},</if>
+            <if test="gyfs != null">gyfs = #{gyfs},</if>
+            <if test="fwzl != null">fwzl = #{fwzl},</if>
+            <if test="bdcdyh != null">bdcdyh = #{bdcdyh},</if>
+            <if test="zsbh != null">zsbh = #{zsbh},</if>
+            <if test="yt != null">yt = #{yt},</if>
+            <if test="mj != null">mj = #{mj},</if>
+            <if test="qzh != null">qzh = #{qzh},</if>
+            <if test="bz != null">bz = #{bz},</if>
+            <if test="tsdw != null">tsdw = #{tsdw},</if>
+            <if test="fwxz != null">fwxz = #{fwxz},</if>
+            <if test="dbsj != null">dbsj = #{dbsj},</if>
+            <if test="dyqr != null">dyqr = #{dyqr},</if>
+            <if test="dyr != null">dyr = #{dyr},</if>
+            <if test="dyzts != null">dyzts = #{dyzts},</if>
+            <if test="cqje != null">cqje = #{cqje},</if>
+            <if test="zwlxqs != null">zwlxqs = #{zwlxqs},</if>
+            <if test="zwlxqz != null">zwlxqz = #{zwlxqz},</if>
+            <if test="txqzh != null">txqzh = #{txqzh},</if>
+            <if test="dyygqlr != null">dyygqlr = #{dyygqlr},</if>
+            <if test="dyygywr != null">dyygywr = #{dyygywr},</if>
+            <if test="dyygzmh != null">dyygzmh = #{dyygzmh},</if>
+            <if test="dyygdjlx != null">dyygdjlx = #{dyygdjlx},</if>
+            <if test="ygqlr != null">ygqlr = #{ygqlr},</if>
+            <if test="ygywr != null">ygywr = #{ygywr},</if>
+            <if test="ygzmh != null">ygzmh = #{ygzmh},</if>
+            <if test="ygdjlx != null">ygdjlx = #{ygdjlx},</if>
+            <if test="cs != null">cs = #{cs},</if>
+            <if test="fwjg != null">fwjg = #{fwjg},</if>
+            <if test="hh != null">hh = #{hh},</if>
+            <if test="zcs != null">zcs = #{zcs},</if>
+            <if test="szc != null">szc = #{szc},</if>
+            <if test="scjzmj != null">scjzmj = #{scjzmj},</if>
+            <if test="sczyjzmj != null">sczyjzmj = #{sczyjzmj},</if>
+            <if test="scftjzmj != null">scftjzmj = #{scftjzmj},</if>
+            <if test="xz != null">xz = #{xz},</if>
+            <if test="lx != null">lx = #{lx},</if>
+            <if test="tdyt != null">tdyt = #{tdyt},</if>
+            <if test="tdsyqxks != null">tdsyqxks = #{tdsyqxks},</if>
+            <if test="tdsyqxjs != null">tdsyqxjs = #{tdsyqxjs},</if>
+            <if test="ywms != null">ywms = #{ywms},</if>
+            <if test="zsmc != null">zsmc = #{zsmc},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteTGuijiNaturalresourcesBdcdjzxxById" parameterType="String">
+        delete from t_guiji_naturalresources_bdcdjzxx where id = #{id}
+    </delete>
+
+    <delete id="deleteTGuijiNaturalresourcesBdcdjzxxByIds" parameterType="String">
+        delete from t_guiji_naturalresources_bdcdjzxx where id in 
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+
+</mapper>

+ 307 - 0
mybusiness/src/main/resources/templates/system/bdcdjzxx/add.html

@@ -0,0 +1,307 @@
+<!DOCTYPE html>
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
+<head>
+    <th:block th:include="include :: header('新增不动产登记证信息')" />
+</head>
+<body class="white-bg">
+    <div class="wrapper wrapper-content animated fadeInRight ibox-content">
+        <form class="form-horizontal m" id="form-bdcdjzxx-add">
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">推送时间:</label>
+                <div class="col-sm-8">
+                    <input name="cdTime" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">批次号:</label>
+                <div class="col-sm-8">
+                    <input name="cdBatch" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">操作状态:</label>
+                <div class="col-sm-8">
+                    <input name="cdOperation" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">数据来源:</label>
+                <div class="col-sm-8">
+                    <input name="cdSource" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">登记编号:</label>
+                <div class="col-sm-8">
+                    <input name="djbh" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">权利人:</label>
+                <div class="col-sm-8">
+                    <input name="qlrmc" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">共有方式:</label>
+                <div class="col-sm-8">
+                    <input name="gyfs" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">坐落:</label>
+                <div class="col-sm-8">
+                    <input name="fwzl" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">不动产单元号:</label>
+                <div class="col-sm-8">
+                    <input name="bdcdyh" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">证书编号:</label>
+                <div class="col-sm-8">
+                    <input name="zsbh" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">用途:</label>
+                <div class="col-sm-8">
+                    <input name="yt" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">面积/抵押总面积:</label>
+                <div class="col-sm-8">
+                    <input name="mj" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">权证号:</label>
+                <div class="col-sm-8">
+                    <input name="qzh" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">附记:</label>
+                <div class="col-sm-8">
+                    <input name="bz" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">推送单位:</label>
+                <div class="col-sm-8">
+                    <input name="tsdw" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">房屋性质:</label>
+                <div class="col-sm-8">
+                    <input name="fwxz" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">登记日期:</label>
+                <div class="col-sm-8">
+                    <input name="dbsj" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">抵押权人:</label>
+                <div class="col-sm-8">
+                    <input name="dyqr" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">抵押人:</label>
+                <div class="col-sm-8">
+                    <input name="dyr" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">抵押总套数:</label>
+                <div class="col-sm-8">
+                    <input name="dyzts" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">债权金额:</label>
+                <div class="col-sm-8">
+                    <input name="cqje" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">债务履行起始:</label>
+                <div class="col-sm-8">
+                    <input name="zwlxqs" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">债务履行终止:</label>
+                <div class="col-sm-8">
+                    <input name="zwlxqz" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">他项权证号:</label>
+                <div class="col-sm-8">
+                    <input name="txqzh" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">抵押预告登记权利人:</label>
+                <div class="col-sm-8">
+                    <input name="dyygqlr" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">抵押预告登记义务人:</label>
+                <div class="col-sm-8">
+                    <input name="dyygywr" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">抵押预告证明号:</label>
+                <div class="col-sm-8">
+                    <input name="dyygzmh" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">抵押预告登记类型:</label>
+                <div class="col-sm-8">
+                    <input name="dyygdjlx" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">预告登记权利人:</label>
+                <div class="col-sm-8">
+                    <input name="ygqlr" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">预告登记义务人:</label>
+                <div class="col-sm-8">
+                    <input name="ygywr" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">预告证明号:</label>
+                <div class="col-sm-8">
+                    <input name="ygzmh" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">预告登记类型:</label>
+                <div class="col-sm-8">
+                    <input name="ygdjlx" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">层次:</label>
+                <div class="col-sm-8">
+                    <input name="cs" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">结构:</label>
+                <div class="col-sm-8">
+                    <input name="fwjg" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">房号:</label>
+                <div class="col-sm-8">
+                    <input name="hh" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">总层数:</label>
+                <div class="col-sm-8">
+                    <input name="zcs" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">所在层:</label>
+                <div class="col-sm-8">
+                    <input name="szc" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">建筑面积:</label>
+                <div class="col-sm-8">
+                    <input name="scjzmj" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">套内面积:</label>
+                <div class="col-sm-8">
+                    <input name="sczyjzmj" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">分摊面积:</label>
+                <div class="col-sm-8">
+                    <input name="scftjzmj" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">土地性质:</label>
+                <div class="col-sm-8">
+                    <input name="xz" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">土地使用取得方式:</label>
+                <div class="col-sm-8">
+                    <input name="lx" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">土地用途:</label>
+                <div class="col-sm-8">
+                    <input name="tdyt" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">土地使用开始:</label>
+                <div class="col-sm-8">
+                    <input name="tdsyqxks" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">土地使用结束:</label>
+                <div class="col-sm-8">
+                    <input name="tdsyqxjs" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">业务类型:</label>
+                <div class="col-sm-8">
+                    <input name="ywms" class="form-control" type="text">
+                </div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">证书名称:</label>
+                <div class="col-sm-8">
+                    <input name="zsmc" class="form-control" type="text">
+                </div>
+            </div>
+        </form>
+    </div>
+    <th:block th:include="include :: footer" />
+    <script th:inline="javascript">
+        var prefix = ctx + "system/bdcdjzxx"
+        $("#form-bdcdjzxx-add").validate({
+            focusCleanup: true
+        });
+
+        function submitHandler() {
+            if ($.validate.form()) {
+                $.operate.save(prefix + "/add", $('#form-bdcdjzxx-add').serialize());
+            }
+        }
+    </script>
+</body>
+</html>

+ 322 - 0
mybusiness/src/main/resources/templates/system/bdcdjzxx/bdcdjzxx.html

@@ -0,0 +1,322 @@
+<!DOCTYPE html>
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
+<head>
+    <th:block th:include="include :: header('不动产登记证信息列表')" />
+</head>
+<body class="gray-bg">
+     <div class="container-div">
+        <div class="row">
+            <div class="col-sm-12 search-collapse">
+                <form id="formId">
+                    <div class="select-list">
+                        <ul>
+                            <li>
+                                <label>登记编号:</label>
+                                <input type="text" name="djbh"/>
+                            </li>
+                            <li>
+                                <label>权利人:</label>
+                                <input type="text" name="qlrmc"/>
+                            </li>
+                            <li>
+                                <label>坐落:</label>
+                                <input type="text" name="fwzl"/>
+                            </li>
+                            <!--<li>-->
+                                <!--<label>证书编号:</label>-->
+                                <!--<input type="text" name="zsbh"/>-->
+                            <!--</li>-->
+                            <!--<li>-->
+                                <!--<label>权证号:</label>-->
+                                <!--<input type="text" name="qzh"/>-->
+                            <!--</li>-->
+                            <li>
+                                <a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
+                                <a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
+                            </li>
+                        </ul>
+                    </div>
+                </form>
+            </div>
+
+            <div class="btn-group-sm" id="toolbar" role="group">
+                <a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="system:bdcdjzxx:add">
+                    <i class="fa fa-plus"></i> 添加
+                </a>
+                <a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="system:bdcdjzxx:edit">
+                    <i class="fa fa-edit"></i> 修改
+                </a>
+                <a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="system:bdcdjzxx:remove">
+                    <i class="fa fa-remove"></i> 删除
+                </a>
+                <a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="system:bdcdjzxx:export">
+                    <i class="fa fa-download"></i> 导出
+                </a>
+            </div>
+            <div class="col-sm-12 select-table table-striped">
+                <table id="bootstrap-table"></table>
+            </div>
+        </div>
+    </div>
+    <th:block th:include="include :: footer" />
+    <script th:inline="javascript">
+        var editFlag = [[${@permission.hasPermi('system:bdcdjzxx:edit')}]];
+        var removeFlag = [[${@permission.hasPermi('system:bdcdjzxx:remove')}]];
+        var prefix = ctx + "system/bdcdjzxx";
+
+        $(function() {
+            var options = {
+                url: prefix + "/list",
+                createUrl: prefix + "/add",
+                updateUrl: prefix + "/edit/{id}",
+                removeUrl: prefix + "/remove",
+                exportUrl: prefix + "/export",
+                detailUrl: prefix + "/edit/{id}",
+                modalName: "不动产登记证信息",
+                columns: [{
+                    checkbox: true
+                },
+                {
+                    field: 'id',
+                    title: '序号',
+                    visible: false
+                },
+                {
+                    field: 'cdBatch',
+                    title: '批次号',
+                    visible: false
+                },
+                {
+                    field: 'cdOperation',
+                    title: '操作状态',
+                    visible: false
+                },
+                {
+                    field: 'cdSource',
+                    title: '数据来源',
+                    visible: false
+                },
+                {
+                    field: 'djbh',
+                    title: '登记编号'
+                },
+                {
+                    field: 'qlrmc',
+                    title: '权利人'
+                },
+                {
+                    field: 'gyfs',
+                    title: '共有方式',
+                    visible: false
+                },
+                {
+                    field: 'fwzl',
+                    title: '坐落'
+                },
+                {
+                    field: 'bdcdyh',
+                    title: '不动产单元号',
+                    visible: false
+                },
+                {
+                    field: 'zsbh',
+                    title: '证书编号',
+                    visible: false
+                },
+                {
+                    field: 'yt',
+                    title: '用途'
+                },
+                {
+                    field: 'mj',
+                    title: '面积/抵押总面积'
+                },
+                {
+                    field: 'qzh',
+                    title: '权证号'
+                },
+                {
+                    field: 'bz',
+                    title: '附记',
+                    visible: false
+                },
+                {
+                    field: 'tsdw',
+                    title: '推送单位',
+                    visible: false
+                },
+                {
+                    field: 'fwxz',
+                    title: '房屋性质'
+                },
+                {
+                    field: 'dbsj',
+                    title: '登记日期',
+                    visible: false
+                },
+                {
+                    field: 'dyqr',
+                    title: '抵押权人',
+                    visible: false
+                },
+                {
+                    field: 'dyr',
+                    title: '抵押人',
+                    visible: false
+                },
+                {
+                    field: 'dyzts',
+                    title: '抵押总套数',
+                    visible: false
+                },
+                {
+                    field: 'cqje',
+                    title: '债权金额',
+                    visible: false
+                },
+                {
+                    field: 'zwlxqs',
+                    title: '债务履行起始',
+                    visible: false
+                },
+                {
+                    field: 'zwlxqz',
+                    title: '债务履行终止',
+                    visible: false
+                },
+                {
+                    field: 'txqzh',
+                    title: '他项权证号',
+                    visible: false
+                },
+                {
+                    field: 'dyygqlr',
+                    title: '抵押预告登记权利人',
+                    visible: false
+                },
+                {
+                    field: 'dyygywr',
+                    title: '抵押预告登记义务人',
+                    visible: false
+                },
+                {
+                    field: 'dyygzmh',
+                    title: '抵押预告证明号',
+                    visible: false
+                },
+                {
+                    field: 'dyygdjlx',
+                    title: '抵押预告登记类型',
+                    visible: false
+                },
+                {
+                    field: 'ygqlr',
+                    title: '预告登记权利人',
+                    visible: false
+                },
+                {
+                    field: 'ygywr',
+                    title: '预告登记义务人',
+                    visible: false
+                },
+                {
+                    field: 'ygzmh',
+                    title: '预告证明号',
+                    visible: false
+                },
+                {
+                    field: 'ygdjlx',
+                    title: '预告登记类型',
+                    visible: false
+                },
+                {
+                    field: 'cs',
+                    title: '层次',
+                    visible: false
+                },
+                {
+                    field: 'fwjg',
+                    title: '结构',
+                    visible: false
+                },
+                {
+                    field: 'hh',
+                    title: '房号',
+                    visible: false
+                },
+                {
+                    field: 'zcs',
+                    title: '总层数',
+                    visible: false
+                },
+                {
+                    field: 'szc',
+                    title: '所在层',
+                    visible: false
+                },
+                {
+                    field: 'scjzmj',
+                    title: '建筑面积',
+                    visible: false
+                },
+                {
+                    field: 'sczyjzmj',
+                    title: '套内面积',
+                    visible: false
+                },
+                {
+                    field: 'scftjzmj',
+                    title: '分摊面积',
+                    visible: false
+                },
+                {
+                    field: 'xz',
+                    title: '土地性质',
+                    visible: false
+                },
+                {
+                    field: 'lx',
+                    title: '土地使用取得方式'
+                },
+                {
+                    field: 'tdyt',
+                    title: '土地用途'
+                },
+                {
+                    field: 'tdsyqxks',
+                    title: '土地使用开始',
+                    visible: false
+                },
+                {
+                    field: 'tdsyqxjs',
+                    title: '土地使用结束',
+                    visible: false
+                },
+                {
+                    field: 'ywms',
+                    title: '业务类型'
+                },
+                {
+                    field: 'zsmc',
+                    title: '证书名称'
+                },
+                    {
+                        field: 'cdTime',
+                        title: '推送时间'
+                    },
+                {
+                    title: '操作',
+                    align: 'center',
+                    formatter: function(value, row, index) {
+                        var actions = [];
+                        actions.push('<a class="btn btn-warning btn-xs  ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.detail(\''
+                            + row.id + '\')"><i class="fa fa-search"></i>详细</a> ');
+                        return actions.join('');
+                    }
+                }]
+            };
+            $.table.init(options);
+        });
+    </script>
+</body>
+</html>

+ 214 - 0
mybusiness/src/main/resources/templates/system/bdcdjzxx/edit.html

@@ -0,0 +1,214 @@
+<!DOCTYPE html>
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
+<head>
+    <th:block th:include="include :: header('查看不动产登记证信息')" />
+</head>
+<body class="white-bg">
+    <div class="wrapper wrapper-content animated fadeInRight ibox-content">
+        <form class="form-horizontal m" id="form-bdcdjzxx-edit" th:object="${tGuijiNaturalresourcesBdcdjzxx}">
+            <input name="id" th:field="*{id}" type="hidden">
+            <!--<div class="form-group">    -->
+                <!--<label class="col-sm-3 control-label">推送时间:</label>-->
+                <!--<div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.djbh}"></div>-->
+                <!--<div class="col-sm-8">-->
+                    <!--<input name="cdTime" th:field="*{cdTime}" class="form-control" type="text">-->
+                <!--</div>-->
+            <!--</div>-->
+            <!--<div class="form-group">    -->
+                <!--<label class="col-sm-3 control-label">批次号:</label>-->
+                <!--<div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.djbh}"></div>-->
+                <!--<div class="col-sm-8">-->
+                    <!--<input name="cdBatch" th:field="*{cdBatch}" class="form-control" type="text">-->
+                <!--</div>-->
+            <!--</div>-->
+            <!--<div class="form-group">    -->
+                <!--<label class="col-sm-3 control-label">操作状态:</label>-->
+                <!--<div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.djbh}"></div>-->
+                <!--<div class="col-sm-8">-->
+                    <!--<input name="cdOperation" th:field="*{cdOperation}" class="form-control" type="text">-->
+                <!--</div>-->
+            <!--</div>-->
+            <!--<div class="form-group">    -->
+                <!--<label class="col-sm-3 control-label">数据来源:</label>-->
+                <!--<div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.djbh}"></div>-->
+                <!--<div class="col-sm-8">-->
+                    <!--<input name="cdSource" th:field="*{cdSource}" class="form-control" type="text">-->
+                <!--</div>-->
+            <!--</div>-->
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">登记编号:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.djbh}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">权利人:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.qlrmc}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">共有方式:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.gyfs}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">坐落:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.fwzl}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">不动产单元号:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.bdcdyh}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">证书编号:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.zsbh}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">用途:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.yt}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">面积/抵押总面积:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.mj}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">权证号:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.qzh}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">附记:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.bz}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">推送单位:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.tsdw}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">房屋性质:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.fwxz}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">登记日期:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.dbsj}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">抵押权人:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.dyqr}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">抵押人:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.dyr}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">抵押总套数:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.dyzts}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">债权金额:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.cqje}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">债务履行起始:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.zwlxqs}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">债务履行终止:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.zwlxqz}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">他项权证号:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.txqzh}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">抵押预告登记权利人:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.dyygqlr}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">抵押预告登记义务人:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.dyygywr}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">抵押预告证明号:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.dyygzmh}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">抵押预告登记类型:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.dyygdjlx}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">预告登记权利人:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.ygqlr}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">预告登记义务人:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.ygywr}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">预告证明号:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.ygzmh}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">预告登记类型:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.ygdjlx}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">层次:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.cs}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">结构:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.fwjg}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">房号:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.hh}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">总层数:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.zcs}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">所在层:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.szc}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">建筑面积:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.scjzmj}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">套内面积:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.sczyjzmj}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">分摊面积:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.scftjzmj}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">土地性质:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.xz}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">土地使用取得方式:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.lx}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">土地用途:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.tdyt}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">土地使用开始:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.tdsyqxks}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">土地使用结束:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.tdsyqxjs}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">业务类型:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.ywms}"></div>
+            </div>
+            <div class="form-group">    
+                <label class="col-sm-3 control-label">证书名称:</label>
+                <div class="form-control-static" th:text="${tGuijiNaturalresourcesBdcdjzxx.zsmc}"></div>
+            </div>
+        </form>
+    </div>
+    <th:block th:include="include :: footer" />
+</body>
+</html>