mybaits

1、当在mapper中使用多个参数,比如 单个与对象混合,都需要使用@Param注解。

@Select("select * from user a where a.id=#{id} and a.userCode=#{UserInfo.userCode}")

void test(@Param("id") String id,@Param("UserInfo") UserInfo req);

你可能感兴趣的:(springboot)