wangxiaoming пре 7 година
родитељ
комит
879915cdc5

+ 5 - 5
watero-rst-service/src/main/java/com/iamberry/rst/service/cm/mapper/BackGoodsMapper.xml

@@ -1,7 +1,7 @@
 <?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.iamberry.rst.service.cm.mapper.BackGoodsMapper" >
-  <resultMap id="BaseResultMap" type="com.iamberry.rst.core.cm.BackGoods" >
+  <resultMap id="BaseResultMap" type="BackGoods" >
     <id column="back_goods_id" property="backGoodsId" jdbcType="INTEGER" />
     <result column="customer_id" property="customerId" jdbcType="INTEGER" />
     <result column="order_id" property="orderId" jdbcType="INTEGER" />
@@ -36,7 +36,7 @@
     delete from tb_rst_back_goods
     where back_goods_id = #{backGoodsId,jdbcType=INTEGER}
   </delete>
-  <insert id="insert" parameterType="rml.model.BackGoods" >
+  <insert id="insert" parameterType="BackGoods" >
     insert into tb_rst_back_goods (back_goods_id, customer_id, order_id, 
       signclosed_id, back_goods_back_status, back_goods_back_name, 
       back_goods_back_tel, back_goods_back_logistics_company, 
@@ -54,7 +54,7 @@
       #{backGoodsCreateTime,jdbcType=TIMESTAMP}, #{backGoodsUpdateTime,jdbcType=TIMESTAMP}
       )
   </insert>
-  <insert id="insertSelective" parameterType="rml.model.BackGoods" >
+  <insert id="insertSelective" parameterType="BackGoods" >
     insert into tb_rst_back_goods
     <trim prefix="(" suffix=")" suffixOverrides="," >
       <if test="backGoodsId != null" >
@@ -163,7 +163,7 @@
       </if>
     </trim>
   </insert>
-  <update id="updateByPrimaryKeySelective" parameterType="rml.model.BackGoods" >
+  <update id="updateByPrimaryKeySelective" parameterType="BackGoods" >
     update tb_rst_back_goods
     <set >
       <if test="customerId != null" >
@@ -217,7 +217,7 @@
     </set>
     where back_goods_id = #{backGoodsId,jdbcType=INTEGER}
   </update>
-  <update id="updateByPrimaryKey" parameterType="rml.model.BackGoods" >
+  <update id="updateByPrimaryKey" parameterType="BackGoods" >
     update tb_rst_back_goods
     set customer_id = #{customerId,jdbcType=INTEGER},
       order_id = #{orderId,jdbcType=INTEGER},

+ 5 - 5
watero-rst-service/src/main/java/com/iamberry/rst/service/cm/mapper/ClosedFittingMapper.xml

@@ -1,7 +1,7 @@
 <?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.iamberry.rst.service.cm.mapper.ClosedFittingMapper" >
-  <resultMap id="BaseResultMap" type="com.iamberry.rst.core.cm.ClosedFitting" >
+  <resultMap id="BaseResultMap" type="ClosedFitting" >
     <id column="closed_fitting_id" property="closedFittingId" jdbcType="INTEGER" />
     <result column="relation_id" property="relationId" jdbcType="INTEGER" />
     <result column="product_id" property="productId" jdbcType="INTEGER" />
@@ -21,13 +21,13 @@
     delete from tb_rst_closed_fitting
     where closed_fitting_id = #{closedFittingId,jdbcType=INTEGER}
   </delete>
-  <insert id="insert" parameterType="rml.model.ClosedFitting" >
+  <insert id="insert" parameterType="ClosedFitting" >
     insert into tb_rst_closed_fitting (closed_fitting_id, relation_id, product_id, 
       fittings_id, closed_fitting_number)
     values (#{closedFittingId,jdbcType=INTEGER}, #{relationId,jdbcType=INTEGER}, #{productId,jdbcType=INTEGER}, 
       #{fittingsId,jdbcType=INTEGER}, #{closedFittingNumber,jdbcType=INTEGER})
   </insert>
-  <insert id="insertSelective" parameterType="rml.model.ClosedFitting" >
+  <insert id="insertSelective" parameterType="ClosedFitting" >
     insert into tb_rst_closed_fitting
     <trim prefix="(" suffix=")" suffixOverrides="," >
       <if test="closedFittingId != null" >
@@ -64,7 +64,7 @@
       </if>
     </trim>
   </insert>
-  <update id="updateByPrimaryKeySelective" parameterType="rml.model.ClosedFitting" >
+  <update id="updateByPrimaryKeySelective" parameterType="ClosedFitting" >
     update tb_rst_closed_fitting
     <set >
       <if test="relationId != null" >
@@ -82,7 +82,7 @@
     </set>
     where closed_fitting_id = #{closedFittingId,jdbcType=INTEGER}
   </update>
-  <update id="updateByPrimaryKey" parameterType="rml.model.ClosedFitting" >
+  <update id="updateByPrimaryKey" parameterType="ClosedFitting" >
     update tb_rst_closed_fitting
     set relation_id = #{relationId,jdbcType=INTEGER},
       product_id = #{productId,jdbcType=INTEGER},

+ 5 - 5
watero-rst-service/src/main/java/com/iamberry/rst/service/cm/mapper/ClosedProdcueMapper.xml

@@ -1,7 +1,7 @@
 <?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.iamberry.rst.service.cm.mapper.ClosedProdcueMapper" >
-  <resultMap id="BaseResultMap" type="com.iamberry.rst.core.cm.ClosedProdcue" >
+  <resultMap id="BaseResultMap" type="ClosedProdcue" >
     <id column="closed_prodcue_id" property="closedProdcueId" jdbcType="INTEGER" />
     <result column="relation_id" property="relationId" jdbcType="INTEGER" />
     <result column="product_id" property="productId" jdbcType="INTEGER" />
@@ -21,13 +21,13 @@
     delete from tb_rst_closed_prodcue
     where closed_prodcue_id = #{closedProdcueId,jdbcType=INTEGER}
   </delete>
-  <insert id="insert" parameterType="rml.model.ClosedProdcue" >
+  <insert id="insert" parameterType="ClosedProdcue" >
     insert into tb_rst_closed_prodcue (closed_prodcue_id, relation_id, product_id, 
       color_id, closed_prodcue_number)
     values (#{closedProdcueId,jdbcType=INTEGER}, #{relationId,jdbcType=INTEGER}, #{productId,jdbcType=INTEGER}, 
       #{colorId,jdbcType=INTEGER}, #{closedProdcueNumber,jdbcType=INTEGER})
   </insert>
-  <insert id="insertSelective" parameterType="rml.model.ClosedProdcue" >
+  <insert id="insertSelective" parameterType="ClosedProdcue" >
     insert into tb_rst_closed_prodcue
     <trim prefix="(" suffix=")" suffixOverrides="," >
       <if test="closedProdcueId != null" >
@@ -64,7 +64,7 @@
       </if>
     </trim>
   </insert>
-  <update id="updateByPrimaryKeySelective" parameterType="rml.model.ClosedProdcue" >
+  <update id="updateByPrimaryKeySelective" parameterType="ClosedProdcue" >
     update tb_rst_closed_prodcue
     <set >
       <if test="relationId != null" >
@@ -82,7 +82,7 @@
     </set>
     where closed_prodcue_id = #{closedProdcueId,jdbcType=INTEGER}
   </update>
-  <update id="updateByPrimaryKey" parameterType="rml.model.ClosedProdcue" >
+  <update id="updateByPrimaryKey" parameterType="ClosedProdcue" >
     update tb_rst_closed_prodcue
     set relation_id = #{relationId,jdbcType=INTEGER},
       product_id = #{productId,jdbcType=INTEGER},

+ 5 - 5
watero-rst-service/src/main/java/com/iamberry/rst/service/cm/mapper/CustomerInfoMapper.xml

@@ -1,7 +1,7 @@
 <?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.iamberry.rst.service.cm.mapper.CustomerInfoMapper" >
-  <resultMap id="BaseResultMap" type="com.iamberry.rst.core.cm.CustomerInfo" >
+  <resultMap id="BaseResultMap" type="CustomerInfo" >
     <id column="customer_id" property="customerId" jdbcType="INTEGER" />
     <result column="admin_id" property="adminId" jdbcType="INTEGER" />
     <result column="question_id" property="questionId" jdbcType="INTEGER" />
@@ -35,7 +35,7 @@
     delete from tb_rst_customer_info
     where customer_id = #{customerId,jdbcType=INTEGER}
   </delete>
-  <insert id="insert" parameterType="rml.model.CustomerInfo" >
+  <insert id="insert" parameterType="CustomerInfo" >
     insert into tb_rst_customer_info (customer_id, admin_id, question_id, 
       company_id, store_id, customer_source_type, 
       customer_source, customer_counsel_type, customer_name, 
@@ -51,7 +51,7 @@
       #{customerCreateTime,jdbcType=TIMESTAMP}, #{customerUpdateTime,jdbcType=TIMESTAMP}
       )
   </insert>
-  <insert id="insertSelective" parameterType="rml.model.CustomerInfo" >
+  <insert id="insertSelective" parameterType="CustomerInfo" >
     insert into tb_rst_customer_info
     <trim prefix="(" suffix=")" suffixOverrides="," >
       <if test="customerId != null" >
@@ -160,7 +160,7 @@
       </if>
     </trim>
   </insert>
-  <update id="updateByPrimaryKeySelective" parameterType="rml.model.CustomerInfo" >
+  <update id="updateByPrimaryKeySelective" parameterType="CustomerInfo" >
     update tb_rst_customer_info
     <set >
       <if test="adminId != null" >
@@ -214,7 +214,7 @@
     </set>
     where customer_id = #{customerId,jdbcType=INTEGER}
   </update>
-  <update id="updateByPrimaryKey" parameterType="rml.model.CustomerInfo" >
+  <update id="updateByPrimaryKey" parameterType="CustomerInfo" >
     update tb_rst_customer_info
     set admin_id = #{adminId,jdbcType=INTEGER},
       question_id = #{questionId,jdbcType=INTEGER},

+ 5 - 5
watero-rst-service/src/main/java/com/iamberry/rst/service/cm/mapper/NoreasonBackMapper.xml

@@ -1,7 +1,7 @@
 <?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.iamberry.rst.service.cm.mapper.NoreasonBackMapper" >
-  <resultMap id="BaseResultMap" type="com.iamberry.rst.core.cm.NoreasonBack" >
+  <resultMap id="BaseResultMap" type="NoreasonBack" >
     <id column="noreason_back_id" property="noreasonBackId" jdbcType="INTEGER" />
     <result column="customer_id" property="customerId" jdbcType="INTEGER" />
     <result column="order_id" property="orderId" jdbcType="INTEGER" />
@@ -37,7 +37,7 @@
     delete from tb_rst_noreason_back
     where noreason_back_id = #{noreasonBackId,jdbcType=INTEGER}
   </delete>
-  <insert id="insert" parameterType="rml.model.NoreasonBack" >
+  <insert id="insert" parameterType="NoreasonBack" >
     insert into tb_rst_noreason_back (noreason_back_id, customer_id, order_id, 
       signclosed_id, noreason_back_back_status, noreason_back_back_name, 
       noreason_back_back_tel, noreason_back_back_logistics_company, 
@@ -55,7 +55,7 @@
       #{noreasonBackCreateTime,jdbcType=TIMESTAMP}, #{noreasonBackUpdateTime,jdbcType=TIMESTAMP}
       )
   </insert>
-  <insert id="insertSelective" parameterType="rml.model.NoreasonBack" >
+  <insert id="insertSelective" parameterType="NoreasonBack" >
     insert into tb_rst_noreason_back
     <trim prefix="(" suffix=")" suffixOverrides="," >
       <if test="noreasonBackId != null" >
@@ -164,7 +164,7 @@
       </if>
     </trim>
   </insert>
-  <update id="updateByPrimaryKeySelective" parameterType="rml.model.NoreasonBack" >
+  <update id="updateByPrimaryKeySelective" parameterType="NoreasonBack" >
     update tb_rst_noreason_back
     <set >
       <if test="customerId != null" >
@@ -218,7 +218,7 @@
     </set>
     where noreason_back_id = #{noreasonBackId,jdbcType=INTEGER}
   </update>
-  <update id="updateByPrimaryKey" parameterType="rml.model.NoreasonBack" >
+  <update id="updateByPrimaryKey" parameterType="NoreasonBack" >
     update tb_rst_noreason_back
     set customer_id = #{customerId,jdbcType=INTEGER},
       order_id = #{orderId,jdbcType=INTEGER},

+ 5 - 5
watero-rst-service/src/main/java/com/iamberry/rst/service/cm/mapper/QuestionDescribeMapper.xml

@@ -1,7 +1,7 @@
 <?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.iamberry.rst.service.cm.mapper.QuestionDescribeMapper" >
-  <resultMap id="BaseResultMap" type="com.iamberry.rst.core.cm.QuestionDescribe" >
+  <resultMap id="BaseResultMap" type="QuestionDescribe" >
     <id column="describe_id" property="describeId" jdbcType="INTEGER" />
     <result column="describe_content" property="describeContent" jdbcType="VARCHAR" />
     <result column="customer_id" property="customerId" jdbcType="INTEGER" />
@@ -19,13 +19,13 @@
     delete from tb_rst_question_describe
     where describe_id = #{describeId,jdbcType=INTEGER}
   </delete>
-  <insert id="insert" parameterType="rml.model.QuestionDescribe" >
+  <insert id="insert" parameterType="QuestionDescribe" >
     insert into tb_rst_question_describe (describe_id, describe_content, customer_id
       )
     values (#{describeId,jdbcType=INTEGER}, #{describeContent,jdbcType=VARCHAR}, #{customerId,jdbcType=INTEGER}
       )
   </insert>
-  <insert id="insertSelective" parameterType="rml.model.QuestionDescribe" >
+  <insert id="insertSelective" parameterType="QuestionDescribe" >
     insert into tb_rst_question_describe
     <trim prefix="(" suffix=")" suffixOverrides="," >
       <if test="describeId != null" >
@@ -50,7 +50,7 @@
       </if>
     </trim>
   </insert>
-  <update id="updateByPrimaryKeySelective" parameterType="rml.model.QuestionDescribe" >
+  <update id="updateByPrimaryKeySelective" parameterType="QuestionDescribe" >
     update tb_rst_question_describe
     <set >
       <if test="describeContent != null" >
@@ -62,7 +62,7 @@
     </set>
     where describe_id = #{describeId,jdbcType=INTEGER}
   </update>
-  <update id="updateByPrimaryKey" parameterType="rml.model.QuestionDescribe" >
+  <update id="updateByPrimaryKey" parameterType="QuestionDescribe" >
     update tb_rst_question_describe
     set describe_content = #{describeContent,jdbcType=VARCHAR},
       customer_id = #{customerId,jdbcType=INTEGER}

+ 5 - 5
watero-rst-service/src/main/java/com/iamberry/rst/service/cm/mapper/ReissueMapper.xml

@@ -1,7 +1,7 @@
 <?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.iamberry.rst.service.cm.mapper.ReissueMapper" >
-  <resultMap id="BaseResultMap" type="com.iamberry.rst.core.cm.Reissue" >
+  <resultMap id="BaseResultMap" type="Reissue" >
     <id column="reissue_id" property="reissueId" jdbcType="INTEGER" />
     <result column="customer_id" property="customerId" jdbcType="INTEGER" />
     <result column="order_id" property="orderId" jdbcType="INTEGER" />
@@ -37,7 +37,7 @@
     delete from tb_rst_reissue
     where reissue_id = #{reissueId,jdbcType=INTEGER}
   </delete>
-  <insert id="insert" parameterType="rml.model.Reissue" >
+  <insert id="insert" parameterType="Reissue" >
     insert into tb_rst_reissue (reissue_id, customer_id, order_id, 
       reissue_back_efast_order_id, reissue_send_status, 
       reissue_send_name, reissue_send_tel, province_number, 
@@ -55,7 +55,7 @@
       #{reissueCreateTime,jdbcType=TIMESTAMP}, #{reissueUpdateTime,jdbcType=TIMESTAMP}
       )
   </insert>
-  <insert id="insertSelective" parameterType="rml.model.Reissue" >
+  <insert id="insertSelective" parameterType="Reissue" >
     insert into tb_rst_reissue
     <trim prefix="(" suffix=")" suffixOverrides="," >
       <if test="reissueId != null" >
@@ -170,7 +170,7 @@
       </if>
     </trim>
   </insert>
-  <update id="updateByPrimaryKeySelective" parameterType="rml.model.Reissue" >
+  <update id="updateByPrimaryKeySelective" parameterType="Reissue" >
     update tb_rst_reissue
     <set >
       <if test="customerId != null" >
@@ -227,7 +227,7 @@
     </set>
     where reissue_id = #{reissueId,jdbcType=INTEGER}
   </update>
-  <update id="updateByPrimaryKey" parameterType="rml.model.Reissue" >
+  <update id="updateByPrimaryKey" parameterType="Reissue" >
     update tb_rst_reissue
     set customer_id = #{customerId,jdbcType=INTEGER},
       order_id = #{orderId,jdbcType=INTEGER},

+ 5 - 5
watero-rst-service/src/main/java/com/iamberry/rst/service/cm/mapper/RenewedMapper.xml

@@ -1,7 +1,7 @@
 <?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.iamberry.rst.service.cm.mapper.RenewedMapper" >
-  <resultMap id="BaseResultMap" type="com.iamberry.rst.core.cm.Renewed" >
+  <resultMap id="BaseResultMap" type="Renewed" >
     <id column="renewed_id" property="renewedId" jdbcType="INTEGER" />
     <result column="customer_id" property="customerId" jdbcType="INTEGER" />
     <result column="order_id" property="orderId" jdbcType="INTEGER" />
@@ -50,7 +50,7 @@
     delete from tb_rst_renewed
     where renewed_id = #{renewedId,jdbcType=INTEGER}
   </delete>
-  <insert id="insert" parameterType="rml.model.Renewed" >
+  <insert id="insert" parameterType="Renewed" >
     insert into tb_rst_renewed (renewed_id, customer_id, order_id, 
       signclosed_id, renewed_back_efast_order_id, 
       renewed_back_status, renewed_back_name, renewed_back_tel, 
@@ -76,7 +76,7 @@
       #{renewedIsTransfer,jdbcType=BIT}, #{renewedCreateTime,jdbcType=TIMESTAMP}, #{renewedUpdateTime,jdbcType=TIMESTAMP}
       )
   </insert>
-  <insert id="insertSelective" parameterType="rml.model.Renewed" >
+  <insert id="insertSelective" parameterType="Renewed" >
     insert into tb_rst_renewed
     <trim prefix="(" suffix=")" suffixOverrides="," >
       <if test="renewedId != null" >
@@ -251,7 +251,7 @@
       </if>
     </trim>
   </insert>
-  <update id="updateByPrimaryKeySelective" parameterType="rml.model.Renewed" >
+  <update id="updateByPrimaryKeySelective" parameterType="Renewed" >
     update tb_rst_renewed
     <set >
       <if test="customerId != null" >
@@ -338,7 +338,7 @@
     </set>
     where renewed_id = #{renewedId,jdbcType=INTEGER}
   </update>
-  <update id="updateByPrimaryKey" parameterType="rml.model.Renewed" >
+  <update id="updateByPrimaryKey" parameterType="Renewed" >
     update tb_rst_renewed
     set customer_id = #{customerId,jdbcType=INTEGER},
       order_id = #{orderId,jdbcType=INTEGER},

+ 5 - 5
watero-rst-service/src/main/java/com/iamberry/rst/service/cm/mapper/RepairMapper.xml

@@ -1,7 +1,7 @@
 <?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.iamberry.rst.service.cm.mapper.RepairMapper" >
-  <resultMap id="BaseResultMap" type="com.iamberry.rst.core.cm.Repair" >
+  <resultMap id="BaseResultMap" type="Repair" >
     <id column="repair_id" property="repairId" jdbcType="INTEGER" />
     <result column="customer_id" property="customerId" jdbcType="INTEGER" />
     <result column="order_id" property="orderId" jdbcType="INTEGER" />
@@ -49,7 +49,7 @@
     delete from tb_rst_repair
     where repair_id = #{repairId,jdbcType=INTEGER}
   </delete>
-  <insert id="insert" parameterType="rml.model.Repair" >
+  <insert id="insert" parameterType="Repair" >
     insert into tb_rst_repair (repair_id, customer_id, order_id, 
       signclosed_id, repair_back_efast_order_id, repair_back_status, 
       repair_back_name, repair_back_tel, repair_back_logistics_company, 
@@ -73,7 +73,7 @@
       #{repairIsTransfer,jdbcType=BIT}, #{repairCreateTime,jdbcType=TIMESTAMP}, #{repairUpdateTime,jdbcType=TIMESTAMP}
       )
   </insert>
-  <insert id="insertSelective" parameterType="rml.model.Repair" >
+  <insert id="insertSelective" parameterType="Repair" >
     insert into tb_rst_repair
     <trim prefix="(" suffix=")" suffixOverrides="," >
       <if test="repairId != null" >
@@ -248,7 +248,7 @@
       </if>
     </trim>
   </insert>
-  <update id="updateByPrimaryKeySelective" parameterType="rml.model.Repair" >
+  <update id="updateByPrimaryKeySelective" parameterType="Repair" >
     update tb_rst_repair
     <set >
       <if test="customerId != null" >
@@ -335,7 +335,7 @@
     </set>
     where repair_id = #{repairId,jdbcType=INTEGER}
   </update>
-  <update id="updateByPrimaryKey" parameterType="rml.model.Repair" >
+  <update id="updateByPrimaryKey" parameterType="Repair" >
     update tb_rst_repair
     set customer_id = #{customerId,jdbcType=INTEGER},
       order_id = #{orderId,jdbcType=INTEGER},

+ 5 - 5
watero-rst-service/src/main/java/com/iamberry/rst/service/cm/mapper/SendFittingMapper.xml

@@ -1,7 +1,7 @@
 <?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.iamberry.rst.service.cm.mapper.SendFittingMapper" >
-  <resultMap id="BaseResultMap" type="com.iamberry.rst.core.cm.SendFitting" >
+  <resultMap id="BaseResultMap" type="SendFitting" >
     <id column="send_fitting_id" property="sendFittingId" jdbcType="INTEGER" />
     <result column="relation_id" property="relationId" jdbcType="INTEGER" />
     <result column="product_id" property="productId" jdbcType="INTEGER" />
@@ -21,13 +21,13 @@
     delete from tb_rst_send_fitting
     where send_fitting_id = #{sendFittingId,jdbcType=INTEGER}
   </delete>
-  <insert id="insert" parameterType="rml.model.SendFitting" >
+  <insert id="insert" parameterType="SendFitting" >
     insert into tb_rst_send_fitting (send_fitting_id, relation_id, product_id, 
       fittings_id, send_fitting_number)
     values (#{sendFittingId,jdbcType=INTEGER}, #{relationId,jdbcType=INTEGER}, #{productId,jdbcType=INTEGER}, 
       #{fittingsId,jdbcType=INTEGER}, #{sendFittingNumber,jdbcType=INTEGER})
   </insert>
-  <insert id="insertSelective" parameterType="rml.model.SendFitting" >
+  <insert id="insertSelective" parameterType="SendFitting" >
     insert into tb_rst_send_fitting
     <trim prefix="(" suffix=")" suffixOverrides="," >
       <if test="sendFittingId != null" >
@@ -64,7 +64,7 @@
       </if>
     </trim>
   </insert>
-  <update id="updateByPrimaryKeySelective" parameterType="rml.model.SendFitting" >
+  <update id="updateByPrimaryKeySelective" parameterType="SendFitting" >
     update tb_rst_send_fitting
     <set >
       <if test="relationId != null" >
@@ -82,7 +82,7 @@
     </set>
     where send_fitting_id = #{sendFittingId,jdbcType=INTEGER}
   </update>
-  <update id="updateByPrimaryKey" parameterType="rml.model.SendFitting" >
+  <update id="updateByPrimaryKey" parameterType="SendFitting" >
     update tb_rst_send_fitting
     set relation_id = #{relationId,jdbcType=INTEGER},
       product_id = #{productId,jdbcType=INTEGER},

+ 5 - 5
watero-rst-service/src/main/java/com/iamberry/rst/service/cm/mapper/SendProdcueMapper.xml

@@ -1,7 +1,7 @@
 <?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.iamberry.rst.service.cm.mapper.SendProdcueMapper" >
-  <resultMap id="BaseResultMap" type="com.iamberry.rst.core.cm.SendProdcue" >
+  <resultMap id="BaseResultMap" type="SendProdcue" >
     <id column="send_prodcue_id" property="sendProdcueId" jdbcType="INTEGER" />
     <result column="relation_id" property="relationId" jdbcType="INTEGER" />
     <result column="product_id" property="productId" jdbcType="INTEGER" />
@@ -21,13 +21,13 @@
     delete from tb_rst_send_prodcue
     where send_prodcue_id = #{sendProdcueId,jdbcType=INTEGER}
   </delete>
-  <insert id="insert" parameterType="rml.model.SendProdcue" >
+  <insert id="insert" parameterType="SendProdcue" >
     insert into tb_rst_send_prodcue (send_prodcue_id, relation_id, product_id, 
       color_id, send_prodcue_number)
     values (#{sendProdcueId,jdbcType=INTEGER}, #{relationId,jdbcType=INTEGER}, #{productId,jdbcType=INTEGER}, 
       #{colorId,jdbcType=INTEGER}, #{sendProdcueNumber,jdbcType=INTEGER})
   </insert>
-  <insert id="insertSelective" parameterType="rml.model.SendProdcue" >
+  <insert id="insertSelective" parameterType="SendProdcue" >
     insert into tb_rst_send_prodcue
     <trim prefix="(" suffix=")" suffixOverrides="," >
       <if test="sendProdcueId != null" >
@@ -64,7 +64,7 @@
       </if>
     </trim>
   </insert>
-  <update id="updateByPrimaryKeySelective" parameterType="rml.model.SendProdcue" >
+  <update id="updateByPrimaryKeySelective" parameterType="SendProdcue" >
     update tb_rst_send_prodcue
     <set >
       <if test="relationId != null" >
@@ -82,7 +82,7 @@
     </set>
     where send_prodcue_id = #{sendProdcueId,jdbcType=INTEGER}
   </update>
-  <update id="updateByPrimaryKey" parameterType="rml.model.SendProdcue" >
+  <update id="updateByPrimaryKey" parameterType="SendProdcue" >
     update tb_rst_send_prodcue
     set relation_id = #{relationId,jdbcType=INTEGER},
       product_id = #{productId,jdbcType=INTEGER},

+ 5 - 5
watero-rst-service/src/main/java/com/iamberry/rst/service/cm/mapper/VisitMapper.xml

@@ -1,7 +1,7 @@
 <?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.iamberry.rst.service.cm.mapper.VisitMapper" >
-  <resultMap id="BaseResultMap" type="com.iamberry.rst.core.cm.Visit" >
+  <resultMap id="BaseResultMap" type="Visit" >
     <id column="visit_id" property="visitId" jdbcType="INTEGER" />
     <result column="customer_id" property="customerId" jdbcType="INTEGER" />
     <result column="admin_id" property="adminId" jdbcType="INTEGER" />
@@ -32,7 +32,7 @@
     delete from tb_rst_visit
     where visit_id = #{visitId,jdbcType=INTEGER}
   </delete>
-  <insert id="insert" parameterType="rml.model.Visit" >
+  <insert id="insert" parameterType="Visit" >
     insert into tb_rst_visit (visit_id, customer_id, admin_id, 
       visit_name, visit_tel, visit_date, 
       visit_time_select, visit_status, visit_complete_date, 
@@ -44,7 +44,7 @@
       #{visitCompleteName,jdbcType=VARCHAR}, #{visitCompleteTel,jdbcType=CHAR}, #{visitCompleteRemark,jdbcType=VARCHAR}, 
       #{visitCreateTime,jdbcType=TIMESTAMP}, #{visitUpdateTime,jdbcType=TIMESTAMP})
   </insert>
-  <insert id="insertSelective" parameterType="rml.model.Visit" >
+  <insert id="insertSelective" parameterType="Visit" >
     insert into tb_rst_visit
     <trim prefix="(" suffix=")" suffixOverrides="," >
       <if test="visitId != null" >
@@ -135,7 +135,7 @@
       </if>
     </trim>
   </insert>
-  <update id="updateByPrimaryKeySelective" parameterType="rml.model.Visit" >
+  <update id="updateByPrimaryKeySelective" parameterType="Visit" >
     update tb_rst_visit
     <set >
       <if test="customerId != null" >
@@ -180,7 +180,7 @@
     </set>
     where visit_id = #{visitId,jdbcType=INTEGER}
   </update>
-  <update id="updateByPrimaryKey" parameterType="rml.model.Visit" >
+  <update id="updateByPrimaryKey" parameterType="Visit" >
     update tb_rst_visit
     set customer_id = #{customerId,jdbcType=INTEGER},
       admin_id = #{adminId,jdbcType=INTEGER},