Browse Source

xml添加region_id字段。

bruce 2 năm trước cách đây
mục cha
commit
58c1085328

+ 0 - 1
imcs-bt-be/imcs-authority-biz/src/main/resources/mapper_authority/base/core/OrgMapper.xml

@@ -1,7 +1,6 @@
 <?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.github.zuihou.authority.dao.core.OrgMapper">
-
     <!-- 通用查询映射结果 -->
     <resultMap id="BaseResultMap" type="com.github.zuihou.authority.entity.core.Org">
         <id column="id" jdbcType="BIGINT" property="id"/>

+ 1 - 1
imcs-bt-be/imcs-business-biz/src/main/resources/mapper_business/base/goods/GoodsMapper.xml

@@ -1,7 +1,6 @@
 <?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.github.zuihou.business.goods.dao.GoodsMapper">
-
     <!-- 通用查询映射结果 -->
     <resultMap id="BaseResultMap" type="com.github.zuihou.business.goods.entity.Goods">
         <id column="id" jdbcType="BIGINT" property="id"/>
@@ -19,6 +18,7 @@
         <result column="goods_price" jdbcType="DECIMAL" property="goodsPrice"/>
         <!--        <result column="goods_cate_name" jdbcType="VARCHAR" property="goodsCateName"/>-->
         <result column="goods_weight" jdbcType="VARCHAR" property="goodsWeight"/>
+        <result column="region_id" jdbcType="BIGINT" property="regionId"/>
     </resultMap>
 
     <resultMap id="SpeResultMap" type="com.github.zuihou.business.spe.entity.Spe">

+ 1 - 1
imcs-bt-be/imcs-business-biz/src/main/resources/mapper_business/base/place/PlaceMapper.xml

@@ -1,7 +1,6 @@
 <?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.github.zuihou.business.place.dao.PlaceMapper">
-
     <!-- 通用查询映射结果 -->
     <resultMap id="BaseResultMap" type="com.github.zuihou.business.place.entity.Place">
         <id column="id" jdbcType="BIGINT" property="id"/>
@@ -27,6 +26,7 @@
         <result column="plc_remark" jdbcType="VARCHAR" property="plcRemark"/>
         <result column="plc_lng" jdbcType="VARCHAR" property="plcLng"/>
         <result column="plc_lat" jdbcType="VARCHAR" property="plcLat"/>
+        <result column="region_id" jdbcType="BIGINT" property="regionId"/>
     </resultMap>
 
     <!-- 通用查询结果列 -->