Mapper<T>, MySqlMapper<T>,MyInsertListMapper<T>中通过id自动查询的方法有哪些
时间: 2023-12-14 20:03:35 浏览: 132
深度转换Bean<->Bean的Mapper
在Mapper<T>中,通过id自动查询的方法为:
- T selectByPrimaryKey(Object key)
在MySqlMapper<T>中,通过id自动查询的方法为:
- T selectOne(T record)
在MyInsertListMapper<T>中,通过id自动查询的方法为:
- List<T> selectByIdList(List<?> idList)
阅读全文