文件名从 src/main/java/com/lunhan/xxx/repository/imapper/TestInfoMapper.java 修改 |
| | |
| | | package com.lunhan.xxx.repository.imapper; |
| | | package com.lunhan.xxx.repository.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.toolkit.Constants; |
| | | import com.lunhan.xxx.entity.dto.search.SearchTestInfo; |
| | | import com.lunhan.xxx.repository.BasicMapper; |
| | | import com.lunhan.xxx.repository.po.TestInfoPO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | |
| | | @Mapper |
| | | public interface TestInfoMapper extends BasicMapper<TestInfoPO> { |
| | | // #{param}:会进行预编译,而且进行类型匹配,最后进行变量替换,括号中可以添加映射类型如 |
| | | // @Select( |