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.
39 lines
787 B
39 lines
787 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QMTask.Core
|
|
{
|
|
/// <summary>
|
|
/// 任务信息
|
|
/// </summary>
|
|
public class TaskInfo
|
|
{
|
|
/// <summary>
|
|
/// 任务ID
|
|
/// </summary>
|
|
public string TaskID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务名称
|
|
/// </summary>
|
|
public string TaskName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务类名
|
|
/// </summary>
|
|
public string TaskType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 程序文件
|
|
/// </summary>
|
|
public string AssemblyFile { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否启用
|
|
/// </summary>
|
|
public string IsUse { get; set; }
|
|
|
|
}
|
|
}
|
|
|