zoukankan      html  css  js  c++  java
  • Mybatis插入语句useGeneratedKeys="true"的用法

    复制代码

      <!-- 插入新的问题件 -->
        <!-- useGeneratedKeys="true"把新增加的主键赋值到自己定义的keyProperty(id)中 -->
        <insert id="insert" parameterType="jw.base.entity.WrongRecApply" useGeneratedKeys="true" keyProperty="id" >
            insert into tb_wrong_rec_apply (num, cid,
            `type`, `describe`, solution,
            seller_tel, seller_qq, seller_email,
            buyer_tel, buyer_qq, buyer_email,
            submit_time, update_time, r_wrong_id,
            ext1, ext2, img,state
            )
            values (#{num,jdbcType=VARCHAR}, #{cid,jdbcType=INTEGER},
            #{type,jdbcType=VARCHAR}, #{describe,jdbcType=VARCHAR}, #{solution,jdbcType=VARCHAR},
            #{sellerTel,jdbcType=VARCHAR}, #{sellerQq,jdbcType=VARCHAR}, #{sellerEmail,jdbcType=VARCHAR},
            #{buyerTel,jdbcType=VARCHAR}, #{buyerQq,jdbcType=VARCHAR}, #{buyerEmail,jdbcType=VARCHAR},
            #{submitTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}, #{rWrongId,jdbcType=INTEGER},
            #{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR}, #{img,jdbcType=LONGVARBINARY},#{state,jdbcType=INTEGER}
            )
        </insert>
  • 相关阅读:
    jQuerychicun
    css3动画
    app开发,H5+CSS3页面布局小tips
    函数基础
    函数
    冒泡排序
    关于Vue+iview的前端简单的导入数据(excel)
    关于Vue+iview的简单下拉框滚动加载
    ES6中set的用法回顾
    百度地图api设置点的自定义图标不显示
  • 原文地址:https://www.cnblogs.com/panxuejun/p/7476105.html
Copyright © 2011-2022 走看看