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 DataTaskLogModel : QDGModel
|
|
{
|
|
/// <summary>
|
|
/// 日志主键
|
|
/// </summary>
|
|
[DGColumn(Hidden = true,PrimaryKey=true)]
|
|
public string PID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划主键
|
|
/// </summary>
|
|
[HTMLInput(UpdateRead = true, required = true, MaxLength = 36)]
|
|
[InputType(inputType.hidden)]
|
|
public string PLANID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务主键
|
|
/// </summary>
|
|
[Description("任务主键")]
|
|
[DGColumn(Hidden = true)]
|
|
public string TASKID { 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.center)]
|
|
public DateTime LASTEXECUTETIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 执行结果
|
|
/// </summary>
|
|
[Description("执行结果")]
|
|
[DGColumn(Sortable = true, Width = 300, DataAlign = DataAlign.left,DisplayLength=20)]
|
|
public string LASTEXECUTERESULT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开始时间
|
|
/// </summary>
|
|
[Description("开始时间")]
|
|
[HTMLInput(UpdateRead = false)]
|
|
[InputType(inputType.dateTimeBox)]
|
|
public string StartTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 截止时间
|
|
/// </summary>
|
|
[Description("截止时间")]
|
|
[HTMLInput(UpdateRead = false)]
|
|
[InputType(inputType.dateTimeBox)]
|
|
public string EndTime { get; set; }
|
|
}
|
|
}
|