feat(*): 调整ServiceImpl#getMapper返回Mapper类型特化

Signed-off-by: Clownsw <msmliexx1@gmail.com>
This commit is contained in:
Clownsw 2024-04-25 15:17:53 +08:00
parent 0ac1b21556
commit ee47ecb9e7
No known key found for this signature in database
GPG Key ID: 5ED2C1C162934176

View File

@ -31,8 +31,8 @@ public class ServiceImpl<M extends BaseMapper<T>, T> implements IService<T> {
protected M mapper;
@Override
public BaseMapper<T> getMapper() {
return mapper;
public M getMapper() {
return this.mapper;
}
}
}