using SKMC.Api.Common.Logger; using System.Collections.Generic; namespace SKMC.Api.Process.Model { /// /// 流程活动模型 /// public class Activity { protected static readonly ILogger log = LogFactory.Get(); /// /// 活动Id /// public int Id { get; set; } /// /// 活动名称 /// public string Name { get; set; } /// /// 是否活动中 /// public bool InAction { get; set; } /// /// Di触发条件集合 /// public List TriggerDiCnds { get; set; } = new List(); /// /// 电机触发条件集合 /// public List TriggerAxisCnds { get; set; } = new List(); /// /// 流程站点 /// public ProcessStation ProcessStation { get; set; } } }