之前是
<select id="selectJobLogList" parameterType="com.ruoyi.job.domain.SysJobLog" resultMap="SysJobLogResult">
现在是
<select id="selectJobLogList" parameterType="SysJobLog" resultMap="SysJobLogResult">
parameterType这里变得更为精简
配置
在你的application.yml或bootstrap.yml下面
为mybatis添加
mybatis:
type-aliases-package: com.ruoyi.**.domain
mapperLocations: classpath*:mybatis/**/*Mapper.xml
type-aliases-package 为实体类所在位置
mapperLocations 对应的是*Mapper.xml的位置