@Delete("delete from "+ROLE_MENU_TABLE + " where menu_id = #{menu_id}") public int deleteByMenuId( @Param("menu_id")String menuId);
mybatis通过注解方式,需使用@Param注解绑定参数
发布于 2018-10-12 2437 次阅读
@Delete("delete from "+ROLE_MENU_TABLE + " where menu_id = #{menu_id}") public int deleteByMenuId( @Param("menu_id")String menuId);
mybatis通过注解方式,需使用@Param注解绑定参数
Comments | NOTHING