You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.5 KiB
C#
61 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 服务流程
|
|
/// </summary>
|
|
public class ServiceWorkFlowBaseDto
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string PKId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务流程代码
|
|
/// </summary>
|
|
/// <example>WF_TEST1</example>
|
|
public string ServiceWorkflowCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务流程名称
|
|
/// </summary>
|
|
/// <example>测试服务流程1</example>
|
|
public string ServiceWorkflowName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务流程说明
|
|
/// </summary>
|
|
/// <example>测试服务流程1</example>
|
|
public string ServiceWorkflowNote { get; set; }
|
|
|
|
/// <summary>
|
|
/// 所属租户ID
|
|
/// </summary>
|
|
/// <example></example>
|
|
public long BelongTenantId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 所属租户名称
|
|
/// </summary>
|
|
/// <example></example>
|
|
public string BelongTenantName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目
|
|
/// </summary>
|
|
public ServiceProjectBaseDto ServiceProject { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态列表
|
|
/// </summary>
|
|
public List<ServiceWorkFlowActivitiesDto> StatusSkuList { get; set; }
|
|
}
|
|
}
|