namespace MiaoYu.Core.Quartz.Models; public interface IQuartzJobLogEntity { /// /// 任务id /// public Guid JobId { get; set; } /// /// 任务日志 /// public string? Text { get; set; } }