using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// /// public class ServiceWorkFlowRunDto { /// /// 主键 /// public string PKId { get; set; } /// /// 服务项目主键 /// public string ServiceProjectId { get; set; } /// /// 服务项目代码 /// public string ServiceProjectCode { get; set; } /// /// 服务项目名称 /// public string ServiceProjectName { get; set; } /// /// 是否已产生 1-已产生 0-未产生 /// public int IsYield { get; set; } /// /// 项目发生时间 /// public Nullable ActDate { get; set; } /// /// 流程ID /// public string WFPKId { get; set; } /// /// 业务系统代码 /// public string BusiSystemCode { get; set; } /// /// 业务主键 /// public string BusiId { get; set; } /// /// 状态列表 /// public List ActivitiesList{ get; set; } } }