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.
BookingHeChuan/Myshipping.Application/Service/TrackingSystem/Dtos/ServiceWorkFlowRunDto.cs

65 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 ServiceWorkFlowRunDto
{
/// <summary>
/// 主键
/// </summary>
public string PKId { get; set; }
/// <summary>
/// 服务项目主键
/// </summary>
public string ServiceProjectId { get; set; }
/// <summary>
/// 服务项目代码
/// </summary>
public string ServiceProjectCode { get; set; }
/// <summary>
/// 服务项目名称
/// </summary>
public string ServiceProjectName { get; set; }
/// <summary>
/// 是否已产生 1-已产生 0-未产生
/// </summary>
public int IsYield { get; set; }
/// <summary>
/// 项目发生时间
/// </summary>
public Nullable<DateTime> ActDate { get; set; }
/// <summary>
/// 流程ID
/// </summary>
public string WFPKId { get; set; }
/// <summary>
/// 业务系统代码
/// </summary>
public string BusiSystemCode { get; set; }
/// <summary>
/// 业务主键
/// </summary>
public string BusiId { get; set; }
/// <summary>
/// 状态列表
/// </summary>
public List<ServiceWorkFlowActivitiesRunDto> ActivitiesList{ get; set; }
}
}