You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
390 B
C#
19 lines
390 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Admin.Core.Model.Sys;
|
|
|
|
namespace Admin.Core.Model
|
|
{
|
|
/// <summary>
|
|
/// 任务调度日志视图
|
|
/// </summary>
|
|
public class JobLogView : SysJobLog
|
|
{
|
|
/// <summary>
|
|
/// 任务信息
|
|
/// </summary>
|
|
public SysTasksQz TasksQz { get; set; } = new SysTasksQz();
|
|
}
|
|
}
|