查询数量 @param clazz @param where @param args @param @return
(Class<T> clazz, String where, String... args)
| 348 | * @return |
| 349 | */ |
| 350 | public <T extends IDColumn> long queryCount(Class<T> clazz, String where, String... args) { |
| 351 | ClassInfo<T> classInfo = getClassInfo(clazz); |
| 352 | return queryCount(classInfo.getTableName(), where, args); |
| 353 | } |
| 354 | |
| 355 | /** |
| 356 | * 查询数量 |
nothing calls this directly
no test coverage detected