【转载】【Mybatis架构】Mapper映射文件中的#{}与${}以及 返回类型的总结resultType(笔记)

【Mybatis架构】Mapper映射文件中的#{}与${}

如果说返回类型是实体类,那么要和getXxx()后面的Xxx–》xxx保持一致!!!!!!!



  
        update user set username = #{username},address = #{address},sex = #{sex},birthday = #{birthday} where id = #{id};
  




    
        delete from user where id = #{aaa};
    

返回类型的总结resultType

你可能感兴趣的:(mybatis)