You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.1 KiB
73 lines
2.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc.Html;
|
|
using QMFrameWork.WebUI;
|
|
using QMFrameWork.WebUI.Attribute;
|
|
|
|
|
|
namespace QMAPP.Web.Models.Report
|
|
{
|
|
/// <summary>
|
|
/// 数据处理任务监控
|
|
/// </summary>
|
|
public class MonitorInfoModel : QDGModel
|
|
{
|
|
/// <summary>
|
|
/// 计划主键
|
|
/// </summary>
|
|
[Description("计划主键")]
|
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
|
public string PLANID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 运行状态
|
|
/// </summary>
|
|
[Description("运行状态")]
|
|
[DGColumn(Sortable = true, Width = 120, DataAlign = DataAlign.center)]
|
|
public string TaskStatus { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务名称
|
|
/// </summary>
|
|
[Description("任务名称")]
|
|
[DGColumn(Sortable = true, Width = 200, DataAlign = DataAlign.left)]
|
|
public string TaskName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 说明
|
|
/// </summary>
|
|
[Description("说明")]
|
|
[DGColumn(Sortable = true, Width = 120, DataAlign = DataAlign.left)]
|
|
public string Remark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 执行频率
|
|
/// </summary>
|
|
[Description("执行频率")]
|
|
[DGColumn(Sortable = true, Width = 120, DataAlign = DataAlign.left)]
|
|
public string ExecuteInterval { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否启用
|
|
/// </summary>
|
|
[Description("是否启用")]
|
|
[DGColumn(Sortable = true, Width = 120, DataAlign = DataAlign.center)]
|
|
public string IsUse { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最后执行时间
|
|
/// </summary>
|
|
[Description("最后执行时间")]
|
|
[DGColumn(Sortable = true, Width = 120, DataAlign = DataAlign.center)]
|
|
public DateTime LastExecuteTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 执行状态
|
|
/// </summary>
|
|
[Description("执行状态")]
|
|
[DGColumn(Sortable = true, Width = 120, DataAlign = DataAlign.center)]
|
|
public string Running { get; set; }
|
|
}
|
|
}
|