发新话题
打印

..ibatis.binding.BindingException: Parameter 'platformGameConfigId' not found.

..ibatis.binding.BindingException: Parameter 'platformGameConfigId' not found.

报这个错误是引入注解不正确。
public GameUnnormalDoubleColorBallUserBuyBallBaseInfo selectGameUnnormalDCBUserBuyBallBaseInfoForWin(
    @Param("platformGameConfigId") Long platformGameConfigId,
    @Param("issue") String issue,
    @Param("ballRedNums") String ballRedNums
);

之前引入注解:
import io.lettuce.core.dynamic.annotation.Param;
应该引入:
import org.apache.ibatis.annotations.Param;

TOP

发新话题