!152 refactor: change modifier.

Merge pull request !152 from 王帅/main
This commit is contained in:
Michael Yang 2023-07-18 04:01:46 +00:00 committed by Gitee
commit e5ce27f5ee
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -44,7 +44,7 @@ public class CacheableServiceImpl<M extends BaseMapper<T>, T> implements IServic
@Autowired
@SuppressWarnings("SpringJavaInjectionPointsAutowiringInspection")
private M mapper;
protected M mapper;
/**
* {@inheritDoc}
@ -96,4 +96,4 @@ public class CacheableServiceImpl<M extends BaseMapper<T>, T> implements IServic
return QueryWrapper.create().from(new QueryTable(tableInfo.getSchema(), tableInfo.getTableName()));
}
}
}