{Mybatis} SQL语句设置多个参数的三种方式


//    1.散装参数
    List<Brand> selectByCondition(@Param("status") int status, @Param("companyName") String companyName, @Param("brandName")String brandName);



//    2.实体类封装参数  保证SQL中的参数名 和 实体类属性名对应
    List<Brand> selectByCondition(Brand brand);



//    3.map集合  保证SQL中的参数名 和 map的键的名称对应
    List<Brand> selectByCondition(Map map);

原创文章,作者:dweifng,如若转载,请注明出处:https://blog.ytso.com/273379.html

(0)
上一篇 2022年7月10日
下一篇 2022年7月10日

相关推荐

发表回复

登录后才能评论