@Insert("insert into tb_category_brand values (#{cid},#{bid})") void insertCidandBid(@Param("cid") Long cid, @Param("bid") Long bid);
在service中定义方法,然后在mapper里面实现这个方法,在方法的上面加上insert 标签,在标签的value里面写上
想要执行的sql语句。
@Insert("insert into tb_category_brand values (#{cid},#{bid})") void insertCidandBid(@Param("cid") Long cid, @Param("bid") Long bid);
在service中定义方法,然后在mapper里面实现这个方法,在方法的上面加上insert 标签,在标签的value里面写上
想要执行的sql语句。