mirror of
https://github.com/zfile-dev/zfile.git
synced 2025-04-19 05:34:52 +00:00
✏️ 修改拼写错误的方法名
This commit is contained in:
@@ -130,7 +130,7 @@ public class DownloadLogManagerController {
|
||||
.ge(StrUtil.isNotEmpty(queryDownloadLogRequest.getDateFrom()), "create_time", queryDownloadLogRequest.getDateFrom())
|
||||
.le(StrUtil.isNotEmpty(queryDownloadLogRequest.getDateTo()), "create_time", queryDownloadLogRequest.getDateTo());
|
||||
|
||||
downloadLogService.deleteByQueryWarpper(queryWrapper);
|
||||
downloadLogService.deleteByQueryWrapper(queryWrapper);
|
||||
return AjaxJson.getSuccess();
|
||||
}
|
||||
|
||||
|
||||
@@ -38,9 +38,10 @@ public class DownloadLogService {
|
||||
downloadLogMapper.deleteBatchIds(ids);
|
||||
}
|
||||
|
||||
public void deleteByQueryWarpper(QueryWrapper<DownloadLog> queryWrapper) {
|
||||
public void deleteByQueryWrapper(QueryWrapper<DownloadLog> queryWrapper) {
|
||||
downloadLogMapper.delete(queryWrapper);
|
||||
}
|
||||
|
||||
public int deleteByStorageKey(String storageKey) {
|
||||
return downloadLogMapper.deleteByStorageKey(storageKey);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user