Mybatis注解实现MySQL数据库基本操做

1. 查询 2. 增长 3. 更新 4. 删除 1. 查询 @Select("select * from tb") 2. 增长 @Insert("insert into tb values(#{param1},#{parma2})") 3. 更新 @Update("update tb set id=#{param1},") 4. 删除 @Delete("delete from tb where i
相关文章
相关标签/搜索