// 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