fix: 解决应用恢复计划任务执行失败的问题 (#3770)

pull/3771/head
ssongliu 2024-01-31 20:38:01 +08:00 committed by GitHub
parent 7219566273
commit e3666d17a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -83,6 +83,7 @@ func (u *BackupService) List() ([]dto.BackupInfo, error) {
func (u *BackupService) SearchRecordsWithPage(search dto.RecordSearch) (int64, []dto.BackupRecords, error) {
total, records, err := backupRepo.PageRecord(
search.Page, search.PageSize,
commonRepo.WithOrderBy("created_at desc"),
commonRepo.WithByName(search.Name),
commonRepo.WithByType(search.Type),
backupRepo.WithByDetailName(search.DetailName),
@ -101,6 +102,7 @@ func (u *BackupService) SearchRecordsWithPage(search dto.RecordSearch) (int64, [
func (u *BackupService) SearchRecordsByCronjobWithPage(search dto.RecordSearchByCronjob) (int64, []dto.BackupRecords, error) {
total, records, err := backupRepo.PageRecord(
search.Page, search.PageSize,
commonRepo.WithOrderBy("created_at desc"),
backupRepo.WithByCronID(search.CronjobID),
)
if err != nil {