|
@@ -0,0 +1,372 @@
|
|
|
+<?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="rml.dao.RenewedMapper" >
|
|
|
+ <resultMap id="BaseResultMap" type="rml.model.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" />
|
|
|
+ <result column="signclosed_id" property="signclosedId" jdbcType="INTEGER" />
|
|
|
+ <result column="renewed_back_efast_order_id" property="renewedBackEfastOrderId" jdbcType="VARCHAR" />
|
|
|
+ <result column="renewed_back_status" property="renewedBackStatus" jdbcType="BIT" />
|
|
|
+ <result column="renewed_back_name" property="renewedBackName" jdbcType="VARCHAR" />
|
|
|
+ <result column="renewed_back_tel" property="renewedBackTel" jdbcType="CHAR" />
|
|
|
+ <result column="renewed_back_logistics_company" property="renewedBackLogisticsCompany" jdbcType="VARCHAR" />
|
|
|
+ <result column="renewed_back_logistics_no" property="renewedBackLogisticsNo" jdbcType="VARCHAR" />
|
|
|
+ <result column="renewed_back_postage" property="renewedBackPostage" jdbcType="INTEGER" />
|
|
|
+ <result column="renewed_back_machine_no" property="renewedBackMachineNo" jdbcType="VARCHAR" />
|
|
|
+ <result column="renewed_send_status" property="renewedSendStatus" jdbcType="BIT" />
|
|
|
+ <result column="renewed_send_name" property="renewedSendName" jdbcType="VARCHAR" />
|
|
|
+ <result column="renewed_send_tel" property="renewedSendTel" jdbcType="CHAR" />
|
|
|
+ <result column="province_number" property="provinceNumber" jdbcType="VARCHAR" />
|
|
|
+ <result column="city_number" property="cityNumber" jdbcType="VARCHAR" />
|
|
|
+ <result column="area_number" property="areaNumber" jdbcType="VARCHAR" />
|
|
|
+ <result column="renewed_send_merge_address" property="renewedSendMergeAddress" jdbcType="VARCHAR" />
|
|
|
+ <result column="renewed_send_address" property="renewedSendAddress" jdbcType="VARCHAR" />
|
|
|
+ <result column="renewed_send_logistics_company" property="renewedSendLogisticsCompany" jdbcType="VARCHAR" />
|
|
|
+ <result column="renewed_send_logistics_no" property="renewedSendLogisticsNo" jdbcType="VARCHAR" />
|
|
|
+ <result column="renewed_desc" property="renewedDesc" jdbcType="VARCHAR" />
|
|
|
+ <result column="renewed_state" property="renewedState" jdbcType="BIT" />
|
|
|
+ <result column="renewed_alipay" property="renewedAlipay" jdbcType="VARCHAR" />
|
|
|
+ <result column="renewed_is_transfer" property="renewedIsTransfer" jdbcType="BIT" />
|
|
|
+ <result column="renewed_create_time" property="renewedCreateTime" jdbcType="TIMESTAMP" />
|
|
|
+ <result column="renewed_update_time" property="renewedUpdateTime" jdbcType="TIMESTAMP" />
|
|
|
+ </resultMap>
|
|
|
+ <sql id="Base_Column_List" >
|
|
|
+ renewed_id, customer_id, order_id, signclosed_id, renewed_back_efast_order_id, renewed_back_status,
|
|
|
+ renewed_back_name, renewed_back_tel, renewed_back_logistics_company, renewed_back_logistics_no,
|
|
|
+ renewed_back_postage, renewed_back_machine_no, renewed_send_status, renewed_send_name,
|
|
|
+ renewed_send_tel, province_number, city_number, area_number, renewed_send_merge_address,
|
|
|
+ renewed_send_address, renewed_send_logistics_company, renewed_send_logistics_no,
|
|
|
+ renewed_desc, renewed_state, renewed_alipay, renewed_is_transfer, renewed_create_time,
|
|
|
+ renewed_update_time
|
|
|
+ </sql>
|
|
|
+ <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
|
|
|
+ select
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
+ from tb_rst_renewed
|
|
|
+ where renewed_id = #{renewedId,jdbcType=INTEGER}
|
|
|
+ </select>
|
|
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
|
|
|
+ delete from tb_rst_renewed
|
|
|
+ where renewed_id = #{renewedId,jdbcType=INTEGER}
|
|
|
+ </delete>
|
|
|
+ <insert id="insert" parameterType="rml.model.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,
|
|
|
+ renewed_back_logistics_company, renewed_back_logistics_no,
|
|
|
+ renewed_back_postage, renewed_back_machine_no,
|
|
|
+ renewed_send_status, renewed_send_name, renewed_send_tel,
|
|
|
+ province_number, city_number, area_number,
|
|
|
+ renewed_send_merge_address, renewed_send_address,
|
|
|
+ renewed_send_logistics_company, renewed_send_logistics_no,
|
|
|
+ renewed_desc, renewed_state, renewed_alipay,
|
|
|
+ renewed_is_transfer, renewed_create_time, renewed_update_time
|
|
|
+ )
|
|
|
+ values (#{renewedId,jdbcType=INTEGER}, #{customerId,jdbcType=INTEGER}, #{orderId,jdbcType=INTEGER},
|
|
|
+ #{signclosedId,jdbcType=INTEGER}, #{renewedBackEfastOrderId,jdbcType=VARCHAR},
|
|
|
+ #{renewedBackStatus,jdbcType=BIT}, #{renewedBackName,jdbcType=VARCHAR}, #{renewedBackTel,jdbcType=CHAR},
|
|
|
+ #{renewedBackLogisticsCompany,jdbcType=VARCHAR}, #{renewedBackLogisticsNo,jdbcType=VARCHAR},
|
|
|
+ #{renewedBackPostage,jdbcType=INTEGER}, #{renewedBackMachineNo,jdbcType=VARCHAR},
|
|
|
+ #{renewedSendStatus,jdbcType=BIT}, #{renewedSendName,jdbcType=VARCHAR}, #{renewedSendTel,jdbcType=CHAR},
|
|
|
+ #{provinceNumber,jdbcType=VARCHAR}, #{cityNumber,jdbcType=VARCHAR}, #{areaNumber,jdbcType=VARCHAR},
|
|
|
+ #{renewedSendMergeAddress,jdbcType=VARCHAR}, #{renewedSendAddress,jdbcType=VARCHAR},
|
|
|
+ #{renewedSendLogisticsCompany,jdbcType=VARCHAR}, #{renewedSendLogisticsNo,jdbcType=VARCHAR},
|
|
|
+ #{renewedDesc,jdbcType=VARCHAR}, #{renewedState,jdbcType=BIT}, #{renewedAlipay,jdbcType=VARCHAR},
|
|
|
+ #{renewedIsTransfer,jdbcType=BIT}, #{renewedCreateTime,jdbcType=TIMESTAMP}, #{renewedUpdateTime,jdbcType=TIMESTAMP}
|
|
|
+ )
|
|
|
+ </insert>
|
|
|
+ <insert id="insertSelective" parameterType="rml.model.Renewed" >
|
|
|
+ insert into tb_rst_renewed
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides="," >
|
|
|
+ <if test="renewedId != null" >
|
|
|
+ renewed_id,
|
|
|
+ </if>
|
|
|
+ <if test="customerId != null" >
|
|
|
+ customer_id,
|
|
|
+ </if>
|
|
|
+ <if test="orderId != null" >
|
|
|
+ order_id,
|
|
|
+ </if>
|
|
|
+ <if test="signclosedId != null" >
|
|
|
+ signclosed_id,
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackEfastOrderId != null" >
|
|
|
+ renewed_back_efast_order_id,
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackStatus != null" >
|
|
|
+ renewed_back_status,
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackName != null" >
|
|
|
+ renewed_back_name,
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackTel != null" >
|
|
|
+ renewed_back_tel,
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackLogisticsCompany != null" >
|
|
|
+ renewed_back_logistics_company,
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackLogisticsNo != null" >
|
|
|
+ renewed_back_logistics_no,
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackPostage != null" >
|
|
|
+ renewed_back_postage,
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackMachineNo != null" >
|
|
|
+ renewed_back_machine_no,
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendStatus != null" >
|
|
|
+ renewed_send_status,
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendName != null" >
|
|
|
+ renewed_send_name,
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendTel != null" >
|
|
|
+ renewed_send_tel,
|
|
|
+ </if>
|
|
|
+ <if test="provinceNumber != null" >
|
|
|
+ province_number,
|
|
|
+ </if>
|
|
|
+ <if test="cityNumber != null" >
|
|
|
+ city_number,
|
|
|
+ </if>
|
|
|
+ <if test="areaNumber != null" >
|
|
|
+ area_number,
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendMergeAddress != null" >
|
|
|
+ renewed_send_merge_address,
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendAddress != null" >
|
|
|
+ renewed_send_address,
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendLogisticsCompany != null" >
|
|
|
+ renewed_send_logistics_company,
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendLogisticsNo != null" >
|
|
|
+ renewed_send_logistics_no,
|
|
|
+ </if>
|
|
|
+ <if test="renewedDesc != null" >
|
|
|
+ renewed_desc,
|
|
|
+ </if>
|
|
|
+ <if test="renewedState != null" >
|
|
|
+ renewed_state,
|
|
|
+ </if>
|
|
|
+ <if test="renewedAlipay != null" >
|
|
|
+ renewed_alipay,
|
|
|
+ </if>
|
|
|
+ <if test="renewedIsTransfer != null" >
|
|
|
+ renewed_is_transfer,
|
|
|
+ </if>
|
|
|
+ <if test="renewedCreateTime != null" >
|
|
|
+ renewed_create_time,
|
|
|
+ </if>
|
|
|
+ <if test="renewedUpdateTime != null" >
|
|
|
+ renewed_update_time,
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides="," >
|
|
|
+ <if test="renewedId != null" >
|
|
|
+ #{renewedId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="customerId != null" >
|
|
|
+ #{customerId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="orderId != null" >
|
|
|
+ #{orderId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="signclosedId != null" >
|
|
|
+ #{signclosedId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackEfastOrderId != null" >
|
|
|
+ #{renewedBackEfastOrderId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackStatus != null" >
|
|
|
+ #{renewedBackStatus,jdbcType=BIT},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackName != null" >
|
|
|
+ #{renewedBackName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackTel != null" >
|
|
|
+ #{renewedBackTel,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackLogisticsCompany != null" >
|
|
|
+ #{renewedBackLogisticsCompany,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackLogisticsNo != null" >
|
|
|
+ #{renewedBackLogisticsNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackPostage != null" >
|
|
|
+ #{renewedBackPostage,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackMachineNo != null" >
|
|
|
+ #{renewedBackMachineNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendStatus != null" >
|
|
|
+ #{renewedSendStatus,jdbcType=BIT},
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendName != null" >
|
|
|
+ #{renewedSendName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendTel != null" >
|
|
|
+ #{renewedSendTel,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="provinceNumber != null" >
|
|
|
+ #{provinceNumber,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="cityNumber != null" >
|
|
|
+ #{cityNumber,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="areaNumber != null" >
|
|
|
+ #{areaNumber,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendMergeAddress != null" >
|
|
|
+ #{renewedSendMergeAddress,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendAddress != null" >
|
|
|
+ #{renewedSendAddress,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendLogisticsCompany != null" >
|
|
|
+ #{renewedSendLogisticsCompany,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendLogisticsNo != null" >
|
|
|
+ #{renewedSendLogisticsNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedDesc != null" >
|
|
|
+ #{renewedDesc,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedState != null" >
|
|
|
+ #{renewedState,jdbcType=BIT},
|
|
|
+ </if>
|
|
|
+ <if test="renewedAlipay != null" >
|
|
|
+ #{renewedAlipay,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedIsTransfer != null" >
|
|
|
+ #{renewedIsTransfer,jdbcType=BIT},
|
|
|
+ </if>
|
|
|
+ <if test="renewedCreateTime != null" >
|
|
|
+ #{renewedCreateTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="renewedUpdateTime != null" >
|
|
|
+ #{renewedUpdateTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="rml.model.Renewed" >
|
|
|
+ update tb_rst_renewed
|
|
|
+ <set >
|
|
|
+ <if test="customerId != null" >
|
|
|
+ customer_id = #{customerId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="orderId != null" >
|
|
|
+ order_id = #{orderId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="signclosedId != null" >
|
|
|
+ signclosed_id = #{signclosedId,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackEfastOrderId != null" >
|
|
|
+ renewed_back_efast_order_id = #{renewedBackEfastOrderId,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackStatus != null" >
|
|
|
+ renewed_back_status = #{renewedBackStatus,jdbcType=BIT},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackName != null" >
|
|
|
+ renewed_back_name = #{renewedBackName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackTel != null" >
|
|
|
+ renewed_back_tel = #{renewedBackTel,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackLogisticsCompany != null" >
|
|
|
+ renewed_back_logistics_company = #{renewedBackLogisticsCompany,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackLogisticsNo != null" >
|
|
|
+ renewed_back_logistics_no = #{renewedBackLogisticsNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackPostage != null" >
|
|
|
+ renewed_back_postage = #{renewedBackPostage,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="renewedBackMachineNo != null" >
|
|
|
+ renewed_back_machine_no = #{renewedBackMachineNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendStatus != null" >
|
|
|
+ renewed_send_status = #{renewedSendStatus,jdbcType=BIT},
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendName != null" >
|
|
|
+ renewed_send_name = #{renewedSendName,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendTel != null" >
|
|
|
+ renewed_send_tel = #{renewedSendTel,jdbcType=CHAR},
|
|
|
+ </if>
|
|
|
+ <if test="provinceNumber != null" >
|
|
|
+ province_number = #{provinceNumber,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="cityNumber != null" >
|
|
|
+ city_number = #{cityNumber,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="areaNumber != null" >
|
|
|
+ area_number = #{areaNumber,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendMergeAddress != null" >
|
|
|
+ renewed_send_merge_address = #{renewedSendMergeAddress,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendAddress != null" >
|
|
|
+ renewed_send_address = #{renewedSendAddress,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendLogisticsCompany != null" >
|
|
|
+ renewed_send_logistics_company = #{renewedSendLogisticsCompany,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedSendLogisticsNo != null" >
|
|
|
+ renewed_send_logistics_no = #{renewedSendLogisticsNo,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedDesc != null" >
|
|
|
+ renewed_desc = #{renewedDesc,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedState != null" >
|
|
|
+ renewed_state = #{renewedState,jdbcType=BIT},
|
|
|
+ </if>
|
|
|
+ <if test="renewedAlipay != null" >
|
|
|
+ renewed_alipay = #{renewedAlipay,jdbcType=VARCHAR},
|
|
|
+ </if>
|
|
|
+ <if test="renewedIsTransfer != null" >
|
|
|
+ renewed_is_transfer = #{renewedIsTransfer,jdbcType=BIT},
|
|
|
+ </if>
|
|
|
+ <if test="renewedCreateTime != null" >
|
|
|
+ renewed_create_time = #{renewedCreateTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ <if test="renewedUpdateTime != null" >
|
|
|
+ renewed_update_time = #{renewedUpdateTime,jdbcType=TIMESTAMP},
|
|
|
+ </if>
|
|
|
+ </set>
|
|
|
+ where renewed_id = #{renewedId,jdbcType=INTEGER}
|
|
|
+ </update>
|
|
|
+ <update id="updateByPrimaryKey" parameterType="rml.model.Renewed" >
|
|
|
+ update tb_rst_renewed
|
|
|
+ set customer_id = #{customerId,jdbcType=INTEGER},
|
|
|
+ order_id = #{orderId,jdbcType=INTEGER},
|
|
|
+ signclosed_id = #{signclosedId,jdbcType=INTEGER},
|
|
|
+ renewed_back_efast_order_id = #{renewedBackEfastOrderId,jdbcType=VARCHAR},
|
|
|
+ renewed_back_status = #{renewedBackStatus,jdbcType=BIT},
|
|
|
+ renewed_back_name = #{renewedBackName,jdbcType=VARCHAR},
|
|
|
+ renewed_back_tel = #{renewedBackTel,jdbcType=CHAR},
|
|
|
+ renewed_back_logistics_company = #{renewedBackLogisticsCompany,jdbcType=VARCHAR},
|
|
|
+ renewed_back_logistics_no = #{renewedBackLogisticsNo,jdbcType=VARCHAR},
|
|
|
+ renewed_back_postage = #{renewedBackPostage,jdbcType=INTEGER},
|
|
|
+ renewed_back_machine_no = #{renewedBackMachineNo,jdbcType=VARCHAR},
|
|
|
+ renewed_send_status = #{renewedSendStatus,jdbcType=BIT},
|
|
|
+ renewed_send_name = #{renewedSendName,jdbcType=VARCHAR},
|
|
|
+ renewed_send_tel = #{renewedSendTel,jdbcType=CHAR},
|
|
|
+ province_number = #{provinceNumber,jdbcType=VARCHAR},
|
|
|
+ city_number = #{cityNumber,jdbcType=VARCHAR},
|
|
|
+ area_number = #{areaNumber,jdbcType=VARCHAR},
|
|
|
+ renewed_send_merge_address = #{renewedSendMergeAddress,jdbcType=VARCHAR},
|
|
|
+ renewed_send_address = #{renewedSendAddress,jdbcType=VARCHAR},
|
|
|
+ renewed_send_logistics_company = #{renewedSendLogisticsCompany,jdbcType=VARCHAR},
|
|
|
+ renewed_send_logistics_no = #{renewedSendLogisticsNo,jdbcType=VARCHAR},
|
|
|
+ renewed_desc = #{renewedDesc,jdbcType=VARCHAR},
|
|
|
+ renewed_state = #{renewedState,jdbcType=BIT},
|
|
|
+ renewed_alipay = #{renewedAlipay,jdbcType=VARCHAR},
|
|
|
+ renewed_is_transfer = #{renewedIsTransfer,jdbcType=BIT},
|
|
|
+ renewed_create_time = #{renewedCreateTime,jdbcType=TIMESTAMP},
|
|
|
+ renewed_update_time = #{renewedUpdateTime,jdbcType=TIMESTAMP}
|
|
|
+ where renewed_id = #{renewedId,jdbcType=INTEGER}
|
|
|
+ </update>
|
|
|
+</mapper>
|