增加执行记录查询接口
continuous-integration/drone/push Build is running

This commit is contained in:
2026-04-02 14:05:08 +08:00
parent 75cceee734
commit 9a276e3d3c
4 changed files with 76 additions and 1 deletions
@@ -19,6 +19,8 @@ public class FileUploadRecordView : FileUploadRecordAddOrEdit
public bool? IsSync { get; set; }
[Comment("同步结束时间-最后一个任务的时间")]
public DateTime? SyncFinishedTime { get; set; }
}
@@ -66,6 +68,10 @@ public class FileUploadRecordQuery : PageInput
{
public BatchDataType? BatchDataType { get; set; }
public Guid? TrialId { get; set; }
public bool? IsSystermFile { get; set; }
public string? FileMarkId { get; set; }
@@ -104,4 +110,25 @@ public class FileUploadRecordQuery : PageInput
public class UploadFileSyncRecordView
{
public DateTime? StartTime { get; set; }
public DateTime? EndTime { get; set; }
public jobState JobState { get; set; }
public string Msg { get; set; }
}
public class UploadFileSyncRecordQuery:PageInput
{
public Guid? FileUploadRecordId { get; set; }
public jobState? JobState { get; set; }
}