Pārlūkot izejas kodu

不动产登记信息

wangjinsheng 3 gadi atpakaļ
vecāks
revīzija
96153f3614

+ 126 - 0
mybusiness/src/main/java/com/sooka/system/controller/TGuijiNaturalresourcesBdcdjxxController.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.TGuijiNaturalresourcesBdcdjxx;
+import com.sooka.system.service.ITGuijiNaturalresourcesBdcdjxxService;
+
+/**
+ * 不动产登记信息Controller
+ * 
+ * @author lei
+ * @date 2021-10-29
+ */
+@Controller
+@RequestMapping("/system/bdcdjxx")
+public class TGuijiNaturalresourcesBdcdjxxController extends BaseController
+{
+    private String prefix = "system/bdcdjxx";
+
+    @Autowired
+    private ITGuijiNaturalresourcesBdcdjxxService tGuijiNaturalresourcesBdcdjxxService;
+
+    @RequiresPermissions("system:bdcdjxx:view")
+    @GetMapping()
+    public String bdcdjxx()
+    {
+        return prefix + "/bdcdjxx";
+    }
+
+    /**
+     * 查询不动产登记信息列表
+     */
+    @RequiresPermissions("system:bdcdjxx:list")
+    @PostMapping("/list")
+    @ResponseBody
+    public TableDataInfo list(TGuijiNaturalresourcesBdcdjxx tGuijiNaturalresourcesBdcdjxx)
+    {
+        startPage();
+        List<TGuijiNaturalresourcesBdcdjxx> list = tGuijiNaturalresourcesBdcdjxxService.selectTGuijiNaturalresourcesBdcdjxxList(tGuijiNaturalresourcesBdcdjxx);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出不动产登记信息列表
+     */
+    @RequiresPermissions("system:bdcdjxx:export")
+    @Log(title = "不动产登记信息", businessType = BusinessType.EXPORT)
+    @PostMapping("/export")
+    @ResponseBody
+    public AjaxResult export(TGuijiNaturalresourcesBdcdjxx tGuijiNaturalresourcesBdcdjxx)
+    {
+        List<TGuijiNaturalresourcesBdcdjxx> list = tGuijiNaturalresourcesBdcdjxxService.selectTGuijiNaturalresourcesBdcdjxxList(tGuijiNaturalresourcesBdcdjxx);
+        ExcelUtil<TGuijiNaturalresourcesBdcdjxx> util = new ExcelUtil<TGuijiNaturalresourcesBdcdjxx>(TGuijiNaturalresourcesBdcdjxx.class);
+        return util.exportExcel(list, "bdcdjxx");
+    }
+
+    /**
+     * 新增不动产登记信息
+     */
+    @GetMapping("/add")
+    public String add()
+    {
+        return prefix + "/add";
+    }
+
+    /**
+     * 新增保存不动产登记信息
+     */
+    @RequiresPermissions("system:bdcdjxx:add")
+    @Log(title = "不动产登记信息", businessType = BusinessType.INSERT)
+    @PostMapping("/add")
+    @ResponseBody
+    public AjaxResult addSave(TGuijiNaturalresourcesBdcdjxx tGuijiNaturalresourcesBdcdjxx)
+    {
+        return toAjax(tGuijiNaturalresourcesBdcdjxxService.insertTGuijiNaturalresourcesBdcdjxx(tGuijiNaturalresourcesBdcdjxx));
+    }
+
+    /**
+     * 修改不动产登记信息
+     */
+    @GetMapping("/edit/{id}")
+    public String edit(@PathVariable("id") String id, ModelMap mmap)
+    {
+        TGuijiNaturalresourcesBdcdjxx tGuijiNaturalresourcesBdcdjxx = tGuijiNaturalresourcesBdcdjxxService.selectTGuijiNaturalresourcesBdcdjxxById(id);
+        mmap.put("tGuijiNaturalresourcesBdcdjxx", tGuijiNaturalresourcesBdcdjxx);
+        return prefix + "/edit";
+    }
+
+    /**
+     * 修改保存不动产登记信息
+     */
+    @RequiresPermissions("system:bdcdjxx:edit")
+    @Log(title = "不动产登记信息", businessType = BusinessType.UPDATE)
+    @PostMapping("/edit")
+    @ResponseBody
+    public AjaxResult editSave(TGuijiNaturalresourcesBdcdjxx tGuijiNaturalresourcesBdcdjxx)
+    {
+        return toAjax(tGuijiNaturalresourcesBdcdjxxService.updateTGuijiNaturalresourcesBdcdjxx(tGuijiNaturalresourcesBdcdjxx));
+    }
+
+    /**
+     * 删除不动产登记信息
+     */
+    @RequiresPermissions("system:bdcdjxx:remove")
+    @Log(title = "不动产登记信息", businessType = BusinessType.DELETE)
+    @PostMapping( "/remove")
+    @ResponseBody
+    public AjaxResult remove(String ids)
+    {
+        return toAjax(tGuijiNaturalresourcesBdcdjxxService.deleteTGuijiNaturalresourcesBdcdjxxByIds(ids));
+    }
+}

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 654 - 0
mybusiness/src/main/java/com/sooka/system/domain/TGuijiNaturalresourcesBdcdjxx.java


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

@@ -0,0 +1,61 @@
+package com.sooka.system.mapper;
+
+import java.util.List;
+import com.sooka.system.domain.TGuijiNaturalresourcesBdcdjxx;
+
+/**
+ * 不动产登记信息Mapper接口
+ * 
+ * @author lei
+ * @date 2021-10-29
+ */
+public interface TGuijiNaturalresourcesBdcdjxxMapper 
+{
+    /**
+     * 查询不动产登记信息
+     * 
+     * @param id 不动产登记信息ID
+     * @return 不动产登记信息
+     */
+    public TGuijiNaturalresourcesBdcdjxx selectTGuijiNaturalresourcesBdcdjxxById(String id);
+
+    /**
+     * 查询不动产登记信息列表
+     * 
+     * @param tGuijiNaturalresourcesBdcdjxx 不动产登记信息
+     * @return 不动产登记信息集合
+     */
+    public List<TGuijiNaturalresourcesBdcdjxx> selectTGuijiNaturalresourcesBdcdjxxList(TGuijiNaturalresourcesBdcdjxx tGuijiNaturalresourcesBdcdjxx);
+
+    /**
+     * 新增不动产登记信息
+     * 
+     * @param tGuijiNaturalresourcesBdcdjxx 不动产登记信息
+     * @return 结果
+     */
+    public int insertTGuijiNaturalresourcesBdcdjxx(TGuijiNaturalresourcesBdcdjxx tGuijiNaturalresourcesBdcdjxx);
+
+    /**
+     * 修改不动产登记信息
+     * 
+     * @param tGuijiNaturalresourcesBdcdjxx 不动产登记信息
+     * @return 结果
+     */
+    public int updateTGuijiNaturalresourcesBdcdjxx(TGuijiNaturalresourcesBdcdjxx tGuijiNaturalresourcesBdcdjxx);
+
+    /**
+     * 删除不动产登记信息
+     * 
+     * @param id 不动产登记信息ID
+     * @return 结果
+     */
+    public int deleteTGuijiNaturalresourcesBdcdjxxById(String id);
+
+    /**
+     * 批量删除不动产登记信息
+     * 
+     * @param ids 需要删除的数据ID
+     * @return 结果
+     */
+    public int deleteTGuijiNaturalresourcesBdcdjxxByIds(String[] ids);
+}

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

@@ -0,0 +1,61 @@
+package com.sooka.system.service;
+
+import java.util.List;
+import com.sooka.system.domain.TGuijiNaturalresourcesBdcdjxx;
+
+/**
+ * 不动产登记信息Service接口
+ * 
+ * @author lei
+ * @date 2021-10-29
+ */
+public interface ITGuijiNaturalresourcesBdcdjxxService 
+{
+    /**
+     * 查询不动产登记信息
+     * 
+     * @param id 不动产登记信息ID
+     * @return 不动产登记信息
+     */
+    public TGuijiNaturalresourcesBdcdjxx selectTGuijiNaturalresourcesBdcdjxxById(String id);
+
+    /**
+     * 查询不动产登记信息列表
+     * 
+     * @param tGuijiNaturalresourcesBdcdjxx 不动产登记信息
+     * @return 不动产登记信息集合
+     */
+    public List<TGuijiNaturalresourcesBdcdjxx> selectTGuijiNaturalresourcesBdcdjxxList(TGuijiNaturalresourcesBdcdjxx tGuijiNaturalresourcesBdcdjxx);
+
+    /**
+     * 新增不动产登记信息
+     * 
+     * @param tGuijiNaturalresourcesBdcdjxx 不动产登记信息
+     * @return 结果
+     */
+    public int insertTGuijiNaturalresourcesBdcdjxx(TGuijiNaturalresourcesBdcdjxx tGuijiNaturalresourcesBdcdjxx);
+
+    /**
+     * 修改不动产登记信息
+     * 
+     * @param tGuijiNaturalresourcesBdcdjxx 不动产登记信息
+     * @return 结果
+     */
+    public int updateTGuijiNaturalresourcesBdcdjxx(TGuijiNaturalresourcesBdcdjxx tGuijiNaturalresourcesBdcdjxx);
+
+    /**
+     * 批量删除不动产登记信息
+     * 
+     * @param ids 需要删除的数据ID
+     * @return 结果
+     */
+    public int deleteTGuijiNaturalresourcesBdcdjxxByIds(String ids);
+
+    /**
+     * 删除不动产登记信息信息
+     * 
+     * @param id 不动产登记信息ID
+     * @return 结果
+     */
+    public int deleteTGuijiNaturalresourcesBdcdjxxById(String id);
+}

+ 96 - 0
mybusiness/src/main/java/com/sooka/system/service/impl/TGuijiNaturalresourcesBdcdjxxServiceImpl.java

@@ -0,0 +1,96 @@
+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.TGuijiNaturalresourcesBdcdjxxMapper;
+import com.sooka.system.domain.TGuijiNaturalresourcesBdcdjxx;
+import com.sooka.system.service.ITGuijiNaturalresourcesBdcdjxxService;
+
+/**
+ * 不动产登记信息Service业务层处理
+ * 
+ * @author lei
+ * @date 2021-10-29
+ */
+@Service
+public class TGuijiNaturalresourcesBdcdjxxServiceImpl implements ITGuijiNaturalresourcesBdcdjxxService 
+{
+    @Autowired
+    private TGuijiNaturalresourcesBdcdjxxMapper tGuijiNaturalresourcesBdcdjxxMapper;
+
+    /**
+     * 查询不动产登记信息
+     * 
+     * @param id 不动产登记信息ID
+     * @return 不动产登记信息
+     */
+    @Override
+    public TGuijiNaturalresourcesBdcdjxx selectTGuijiNaturalresourcesBdcdjxxById(String id)
+    {
+        return tGuijiNaturalresourcesBdcdjxxMapper.selectTGuijiNaturalresourcesBdcdjxxById(id);
+    }
+
+    /**
+     * 查询不动产登记信息列表
+     * 
+     * @param tGuijiNaturalresourcesBdcdjxx 不动产登记信息
+     * @return 不动产登记信息
+     */
+    @Override
+    public List<TGuijiNaturalresourcesBdcdjxx> selectTGuijiNaturalresourcesBdcdjxxList(TGuijiNaturalresourcesBdcdjxx tGuijiNaturalresourcesBdcdjxx)
+    {
+        return tGuijiNaturalresourcesBdcdjxxMapper.selectTGuijiNaturalresourcesBdcdjxxList(tGuijiNaturalresourcesBdcdjxx);
+    }
+
+    /**
+     * 新增不动产登记信息
+     * 
+     * @param tGuijiNaturalresourcesBdcdjxx 不动产登记信息
+     * @return 结果
+     */
+    @Override
+    public int insertTGuijiNaturalresourcesBdcdjxx(TGuijiNaturalresourcesBdcdjxx tGuijiNaturalresourcesBdcdjxx)
+    {
+        tGuijiNaturalresourcesBdcdjxx.setCreateTime(DateUtils.getNowDate());
+        return tGuijiNaturalresourcesBdcdjxxMapper.insertTGuijiNaturalresourcesBdcdjxx(tGuijiNaturalresourcesBdcdjxx);
+    }
+
+    /**
+     * 修改不动产登记信息
+     * 
+     * @param tGuijiNaturalresourcesBdcdjxx 不动产登记信息
+     * @return 结果
+     */
+    @Override
+    public int updateTGuijiNaturalresourcesBdcdjxx(TGuijiNaturalresourcesBdcdjxx tGuijiNaturalresourcesBdcdjxx)
+    {
+        return tGuijiNaturalresourcesBdcdjxxMapper.updateTGuijiNaturalresourcesBdcdjxx(tGuijiNaturalresourcesBdcdjxx);
+    }
+
+    /**
+     * 删除不动产登记信息对象
+     * 
+     * @param ids 需要删除的数据ID
+     * @return 结果
+     */
+    @Override
+    public int deleteTGuijiNaturalresourcesBdcdjxxByIds(String ids)
+    {
+        return tGuijiNaturalresourcesBdcdjxxMapper.deleteTGuijiNaturalresourcesBdcdjxxByIds(Convert.toStrArray(ids));
+    }
+
+    /**
+     * 删除不动产登记信息信息
+     * 
+     * @param id 不动产登记信息ID
+     * @return 结果
+     */
+    @Override
+    public int deleteTGuijiNaturalresourcesBdcdjxxById(String id)
+    {
+        return tGuijiNaturalresourcesBdcdjxxMapper.deleteTGuijiNaturalresourcesBdcdjxxById(id);
+    }
+}

+ 278 - 0
mybusiness/src/main/resources/mapper/system/TGuijiNaturalresourcesBdcdjxxMapper.xml

@@ -0,0 +1,278 @@
+<?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.TGuijiNaturalresourcesBdcdjxxMapper">
+    
+    <resultMap type="TGuijiNaturalresourcesBdcdjxx" id="TGuijiNaturalresourcesBdcdjxxResult">
+        <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="fdzl"    column="fdzl"    />
+        <result property="gyfs"    column="gyfs"    />
+        <result property="qllx"    column="qllx"    />
+        <result property="cqxz"    column="cqxz"    />
+        <result property="czfs"    column="czfs"    />
+        <result property="zpgj"    column="zpgj"    />
+        <result property="qsje"    column="qsje"    />
+        <result property="zcjj"    column="zcjj"    />
+        <result property="qsjs"    column="qsjs"    />
+        <result property="wxzj"    column="wxzj"    />
+        <result property="yys"    column="yys"    />
+        <result property="wsrq"    column="wsrq"    />
+        <result property="cqazhtrq"    column="cqazhtrq"    />
+        <result property="djyy"    column="djyy"    />
+        <result property="fj"    column="fj"    />
+        <result property="hh"    column="hh"    />
+        <result property="zcs"    column="zcs"    />
+        <result property="szc"    column="szc"    />
+        <result property="ghyt"    column="ghyt"    />
+        <result property="fwjg"    column="fwjg"    />
+        <result property="scjzmj"    column="scjzmj"    />
+        <result property="sczyjzmj"    column="sczyjzmj"    />
+        <result property="scftjzmj"    column="scftjzmj"    />
+        <result property="jgsj"    column="jgsj"    />
+        <result property="fwzl"    column="fwzl"    />
+        <result property="tdqlxz"    column="tdqlxz"    />
+        <result property="tdqllx"    column="tdqllx"    />
+        <result property="tdyt"    column="tdyt"    />
+        <result property="tdsyqxks"    column="tdsyqxks"    />
+        <result property="tdsyqxjs"    column="tdsyqxjs"    />
+        <result property="synx"    column="synx"    />
+        <result property="dytdmj"    column="dytdmj"    />
+        <result property="fttdmj"    column="fttdmj"    />
+        <result property="gytdmj"    column="gytdmj"    />
+        <result property="zddm"    column="zddm"    />
+        <result property="bdcdyh"    column="bdcdyh"    />
+        <result property="bdcid"    column="bdcid"    />
+        <result property="tsdw"    column="tsdw"    />
+        <result property="fwxz"    column="fwxz"    />
+    </resultMap>
+
+    <sql id="selectTGuijiNaturalresourcesBdcdjxxVo">
+        select id, create_time, cd_time, cd_batch, cd_operation, cd_source, djbh, fdzl, gyfs, qllx, cqxz, czfs, zpgj, qsje, zcjj, qsjs, wxzj, yys, wsrq, cqazhtrq, djyy, fj, hh, zcs, szc, ghyt, fwjg, scjzmj, sczyjzmj, scftjzmj, jgsj, fwzl, tdqlxz, tdqllx, tdyt, tdsyqxks, tdsyqxjs, synx, dytdmj, fttdmj, gytdmj, zddm, bdcdyh, bdcid, tsdw, fwxz from t_guiji_naturalresources_bdcdjxx
+    </sql>
+
+    <select id="selectTGuijiNaturalresourcesBdcdjxxList" parameterType="TGuijiNaturalresourcesBdcdjxx" resultMap="TGuijiNaturalresourcesBdcdjxxResult">
+        <include refid="selectTGuijiNaturalresourcesBdcdjxxVo"/>
+        <where>  
+            <if test="cdTime != null  and cdTime != ''"> and cd_time = #{cdTime}</if>
+            <if test="cdBatch != null  and cdBatch != ''"> and cd_batch = #{cdBatch}</if>
+            <if test="cdOperation != null  and cdOperation != ''"> and cd_operation = #{cdOperation}</if>
+            <if test="cdSource != null  and cdSource != ''"> and cd_source = #{cdSource}</if>
+            <if test="djbh != null  and djbh != ''"> and djbh = #{djbh}</if>
+            <if test="fdzl != null  and fdzl != ''"> and fdzl like concat('%', #{fdzl}, '%')</if>
+            <if test="gyfs != null  and gyfs != ''"> and gyfs = #{gyfs}</if>
+            <if test="qllx != null  and qllx != ''"> and qllx = #{qllx}</if>
+            <if test="cqxz != null  and cqxz != ''"> and cqxz = #{cqxz}</if>
+            <if test="czfs != null  and czfs != ''"> and czfs = #{czfs}</if>
+            <if test="zpgj != null  and zpgj != ''"> and zpgj = #{zpgj}</if>
+            <if test="qsje != null  and qsje != ''"> and qsje = #{qsje}</if>
+            <if test="zcjj != null  and zcjj != ''"> and zcjj = #{zcjj}</if>
+            <if test="qsjs != null  and qsjs != ''"> and qsjs = #{qsjs}</if>
+            <if test="wxzj != null  and wxzj != ''"> and wxzj = #{wxzj}</if>
+            <if test="yys != null  and yys != ''"> and yys = #{yys}</if>
+            <if test="wsrq != null  and wsrq != ''"> and wsrq = #{wsrq}</if>
+            <if test="cqazhtrq != null  and cqazhtrq != ''"> and cqazhtrq = #{cqazhtrq}</if>
+            <if test="djyy != null  and djyy != ''"> and djyy = #{djyy}</if>
+            <if test="fj != null  and fj != ''"> and fj = #{fj}</if>
+            <if test="hh != null  and hh != ''"> and hh = #{hh}</if>
+            <if test="zcs != null  and zcs != ''"> and zcs = #{zcs}</if>
+            <if test="szc != null  and szc != ''"> and szc = #{szc}</if>
+            <if test="ghyt != null  and ghyt != ''"> and ghyt = #{ghyt}</if>
+            <if test="fwjg != null  and fwjg != ''"> and fwjg = #{fwjg}</if>
+            <if test="scjzmj != null  and scjzmj != ''"> and scjzmj = #{scjzmj}</if>
+            <if test="sczyjzmj != null  and sczyjzmj != ''"> and sczyjzmj = #{sczyjzmj}</if>
+            <if test="scftjzmj != null  and scftjzmj != ''"> and scftjzmj = #{scftjzmj}</if>
+            <if test="jgsj != null  and jgsj != ''"> and jgsj = #{jgsj}</if>
+            <if test="fwzl != null  and fwzl != ''"> and fwzl like concat('%', #{fwzl}, '%')</if>
+            <if test="tdqlxz != null  and tdqlxz != ''"> and tdqlxz = #{tdqlxz}</if>
+            <if test="tdqllx != null  and tdqllx != ''"> and tdqllx = #{tdqllx}</if>
+            <if test="tdyt != null  and tdyt != ''"> and tdyt = #{tdyt}</if>
+            <if test="tdsyqxks != null  and tdsyqxks != ''"> and tdsyqxks = #{tdsyqxks}</if>
+            <if test="tdsyqxjs != null  and tdsyqxjs != ''"> and tdsyqxjs = #{tdsyqxjs}</if>
+            <if test="synx != null  and synx != ''"> and synx = #{synx}</if>
+            <if test="dytdmj != null  and dytdmj != ''"> and dytdmj = #{dytdmj}</if>
+            <if test="fttdmj != null  and fttdmj != ''"> and fttdmj = #{fttdmj}</if>
+            <if test="gytdmj != null  and gytdmj != ''"> and gytdmj = #{gytdmj}</if>
+            <if test="zddm != null  and zddm != ''"> and zddm = #{zddm}</if>
+            <if test="bdcdyh != null  and bdcdyh != ''"> and bdcdyh = #{bdcdyh}</if>
+            <if test="bdcid != null  and bdcid != ''"> and bdcid = #{bdcid}</if>
+            <if test="tsdw != null  and tsdw != ''"> and tsdw = #{tsdw}</if>
+            <if test="fwxz != null  and fwxz != ''"> and fwxz = #{fwxz}</if>
+        </where>
+    </select>
+    
+    <select id="selectTGuijiNaturalresourcesBdcdjxxById" parameterType="String" resultMap="TGuijiNaturalresourcesBdcdjxxResult">
+        <include refid="selectTGuijiNaturalresourcesBdcdjxxVo"/>
+        where id = #{id}
+    </select>
+        
+    <insert id="insertTGuijiNaturalresourcesBdcdjxx" parameterType="TGuijiNaturalresourcesBdcdjxx">
+        insert into t_guiji_naturalresources_bdcdjxx
+        <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="fdzl != null">fdzl,</if>
+            <if test="gyfs != null">gyfs,</if>
+            <if test="qllx != null">qllx,</if>
+            <if test="cqxz != null">cqxz,</if>
+            <if test="czfs != null">czfs,</if>
+            <if test="zpgj != null">zpgj,</if>
+            <if test="qsje != null">qsje,</if>
+            <if test="zcjj != null">zcjj,</if>
+            <if test="qsjs != null">qsjs,</if>
+            <if test="wxzj != null">wxzj,</if>
+            <if test="yys != null">yys,</if>
+            <if test="wsrq != null">wsrq,</if>
+            <if test="cqazhtrq != null">cqazhtrq,</if>
+            <if test="djyy != null">djyy,</if>
+            <if test="fj != null">fj,</if>
+            <if test="hh != null">hh,</if>
+            <if test="zcs != null">zcs,</if>
+            <if test="szc != null">szc,</if>
+            <if test="ghyt != null">ghyt,</if>
+            <if test="fwjg != null">fwjg,</if>
+            <if test="scjzmj != null">scjzmj,</if>
+            <if test="sczyjzmj != null">sczyjzmj,</if>
+            <if test="scftjzmj != null">scftjzmj,</if>
+            <if test="jgsj != null">jgsj,</if>
+            <if test="fwzl != null">fwzl,</if>
+            <if test="tdqlxz != null">tdqlxz,</if>
+            <if test="tdqllx != null">tdqllx,</if>
+            <if test="tdyt != null">tdyt,</if>
+            <if test="tdsyqxks != null">tdsyqxks,</if>
+            <if test="tdsyqxjs != null">tdsyqxjs,</if>
+            <if test="synx != null">synx,</if>
+            <if test="dytdmj != null">dytdmj,</if>
+            <if test="fttdmj != null">fttdmj,</if>
+            <if test="gytdmj != null">gytdmj,</if>
+            <if test="zddm != null">zddm,</if>
+            <if test="bdcdyh != null">bdcdyh,</if>
+            <if test="bdcid != null">bdcid,</if>
+            <if test="tsdw != null">tsdw,</if>
+            <if test="fwxz != null">fwxz,</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="fdzl != null">#{fdzl},</if>
+            <if test="gyfs != null">#{gyfs},</if>
+            <if test="qllx != null">#{qllx},</if>
+            <if test="cqxz != null">#{cqxz},</if>
+            <if test="czfs != null">#{czfs},</if>
+            <if test="zpgj != null">#{zpgj},</if>
+            <if test="qsje != null">#{qsje},</if>
+            <if test="zcjj != null">#{zcjj},</if>
+            <if test="qsjs != null">#{qsjs},</if>
+            <if test="wxzj != null">#{wxzj},</if>
+            <if test="yys != null">#{yys},</if>
+            <if test="wsrq != null">#{wsrq},</if>
+            <if test="cqazhtrq != null">#{cqazhtrq},</if>
+            <if test="djyy != null">#{djyy},</if>
+            <if test="fj != null">#{fj},</if>
+            <if test="hh != null">#{hh},</if>
+            <if test="zcs != null">#{zcs},</if>
+            <if test="szc != null">#{szc},</if>
+            <if test="ghyt != null">#{ghyt},</if>
+            <if test="fwjg != null">#{fwjg},</if>
+            <if test="scjzmj != null">#{scjzmj},</if>
+            <if test="sczyjzmj != null">#{sczyjzmj},</if>
+            <if test="scftjzmj != null">#{scftjzmj},</if>
+            <if test="jgsj != null">#{jgsj},</if>
+            <if test="fwzl != null">#{fwzl},</if>
+            <if test="tdqlxz != null">#{tdqlxz},</if>
+            <if test="tdqllx != null">#{tdqllx},</if>
+            <if test="tdyt != null">#{tdyt},</if>
+            <if test="tdsyqxks != null">#{tdsyqxks},</if>
+            <if test="tdsyqxjs != null">#{tdsyqxjs},</if>
+            <if test="synx != null">#{synx},</if>
+            <if test="dytdmj != null">#{dytdmj},</if>
+            <if test="fttdmj != null">#{fttdmj},</if>
+            <if test="gytdmj != null">#{gytdmj},</if>
+            <if test="zddm != null">#{zddm},</if>
+            <if test="bdcdyh != null">#{bdcdyh},</if>
+            <if test="bdcid != null">#{bdcid},</if>
+            <if test="tsdw != null">#{tsdw},</if>
+            <if test="fwxz != null">#{fwxz},</if>
+         </trim>
+    </insert>
+
+    <update id="updateTGuijiNaturalresourcesBdcdjxx" parameterType="TGuijiNaturalresourcesBdcdjxx">
+        update t_guiji_naturalresources_bdcdjxx
+        <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="fdzl != null">fdzl = #{fdzl},</if>
+            <if test="gyfs != null">gyfs = #{gyfs},</if>
+            <if test="qllx != null">qllx = #{qllx},</if>
+            <if test="cqxz != null">cqxz = #{cqxz},</if>
+            <if test="czfs != null">czfs = #{czfs},</if>
+            <if test="zpgj != null">zpgj = #{zpgj},</if>
+            <if test="qsje != null">qsje = #{qsje},</if>
+            <if test="zcjj != null">zcjj = #{zcjj},</if>
+            <if test="qsjs != null">qsjs = #{qsjs},</if>
+            <if test="wxzj != null">wxzj = #{wxzj},</if>
+            <if test="yys != null">yys = #{yys},</if>
+            <if test="wsrq != null">wsrq = #{wsrq},</if>
+            <if test="cqazhtrq != null">cqazhtrq = #{cqazhtrq},</if>
+            <if test="djyy != null">djyy = #{djyy},</if>
+            <if test="fj != null">fj = #{fj},</if>
+            <if test="hh != null">hh = #{hh},</if>
+            <if test="zcs != null">zcs = #{zcs},</if>
+            <if test="szc != null">szc = #{szc},</if>
+            <if test="ghyt != null">ghyt = #{ghyt},</if>
+            <if test="fwjg != null">fwjg = #{fwjg},</if>
+            <if test="scjzmj != null">scjzmj = #{scjzmj},</if>
+            <if test="sczyjzmj != null">sczyjzmj = #{sczyjzmj},</if>
+            <if test="scftjzmj != null">scftjzmj = #{scftjzmj},</if>
+            <if test="jgsj != null">jgsj = #{jgsj},</if>
+            <if test="fwzl != null">fwzl = #{fwzl},</if>
+            <if test="tdqlxz != null">tdqlxz = #{tdqlxz},</if>
+            <if test="tdqllx != null">tdqllx = #{tdqllx},</if>
+            <if test="tdyt != null">tdyt = #{tdyt},</if>
+            <if test="tdsyqxks != null">tdsyqxks = #{tdsyqxks},</if>
+            <if test="tdsyqxjs != null">tdsyqxjs = #{tdsyqxjs},</if>
+            <if test="synx != null">synx = #{synx},</if>
+            <if test="dytdmj != null">dytdmj = #{dytdmj},</if>
+            <if test="fttdmj != null">fttdmj = #{fttdmj},</if>
+            <if test="gytdmj != null">gytdmj = #{gytdmj},</if>
+            <if test="zddm != null">zddm = #{zddm},</if>
+            <if test="bdcdyh != null">bdcdyh = #{bdcdyh},</if>
+            <if test="bdcid != null">bdcid = #{bdcid},</if>
+            <if test="tsdw != null">tsdw = #{tsdw},</if>
+            <if test="fwxz != null">fwxz = #{fwxz},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteTGuijiNaturalresourcesBdcdjxxById" parameterType="String">
+        delete from t_guiji_naturalresources_bdcdjxx where id = #{id}
+    </delete>
+
+    <delete id="deleteTGuijiNaturalresourcesBdcdjxxByIds" parameterType="String">
+        delete from t_guiji_naturalresources_bdcdjxx where id in 
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+
+</mapper>

Failā izmaiņas netiks attēlotas, jo tās ir par lielu
+ 457 - 0
mybusiness/src/main/resources/templates/system/bdcdjxx/bdcdjxx.html