using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace VueWebCoreApi.Quartz { public class JobActionLog { public long Id { get; set; } public string ActionType { get; set; } public string TaskName { get; set; } public string GroupName { get; set; } public string Content { get; set; } public DateTime CreateTime { get; set; } } }