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 ServiceProjectCode { get; set; } /// /// 服务项目名称 /// public string ServiceProjectName { get; set; } /// /// 状态列表 /// public List ActivitiesList{ get; set; } } }