using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 服务流程 /// public class ServiceWorkFlowBaseDto { /// /// 主键 /// /// public string PKId { get; set; } /// /// 服务流程代码 /// /// WF_TEST1 public string ServiceWorkflowCode { get; set; } /// /// 服务流程名称 /// /// 测试服务流程1 public string ServiceWorkflowName { get; set; } /// /// 服务流程说明 /// /// 测试服务流程1 public string ServiceWorkflowNote { get; set; } /// /// 所属租户ID /// /// public long BelongTenantId { get; set; } /// /// 所属租户名称 /// /// public string BelongTenantName { get; set; } /// /// 服务项目 /// public ServiceProjectBaseDto ServiceProject { get; set; } /// /// 状态列表 /// public List StatusSkuList { get; set; } } }