关于mybatis对实体类参数绑定参数的问题

dao层的代码:
public interface SupplierMapper extends BaseMapper{
    /*List getAllSupplier(@Param("type") String type,
                                     @Param("cooperStatus") Integer cooperStatus,
                                     @Param("name") String name,
                                     @Param("supplierNo") String supplierNo);*/
    List getAllSupplier(@Param("supplierDbo") SupplierDbo supplierDbo,@Param("goodsClassDbo") GoodsClassDbo goodsClassDbo);
}
传入的参数为两个实体类SupplierDbo、GoodsClassDbo
mapper中的代码:
dao层中使用@Param,然后mapper中使用@Param中的参数对相应的参数取值。

转载于:https://www.cnblogs.com/huangzhe1515023110/p/9276100.html

你可能感兴趣的:(关于mybatis对实体类参数绑定参数的问题)