报这个错误是引入注解不正确。
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;