using NXWMS.Client.Model.CoreModels; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; namespace NXWMS.Client.Model.AppModels.Condition.Rule { /// /// 定时任务 /// public class TaskTimedSearchCondition : PageQueryConditionInfo { /// /// 任务ID /// public int? TaskId { get; set; } /// /// 任务编码 /// public string TaskCode { get; set; } /// /// 任务内容 /// public string TaskContent { get; set; } /// /// 使用标识 /// public bool? IsUsed { get; set; } } }