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/StatusTriggerConditionDto.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 StatusTriggerConditionDto
{
/// <summary>
/// 主键
/// </summary>
public string PKId { get; set; }
/// <summary>
/// 服务活动主键
/// </summary>
public string ServiceActivitiesID { get; set; }
/// <summary>
/// 状态显示名称
/// </summary>
public string ShowName { get; set; }
/// <summary>
/// 操作类型
/// </summary>
public string OperType { get; set; }
/// <summary>
/// 操作类型名称
/// </summary>
public string OperTypeName { get; set; }
/// <summary>
/// 操作类型判断值
/// </summary>
public string OperTypeVal { get; set; }
/// <summary>
/// 随即触发类型
/// </summary>
public string NextActionType { get; set; }
/// <summary>
/// 随即触发名称
/// </summary>
public string NextActionTypeName { get; set; }
/// <summary>
/// LIQUID表达式JSON
/// </summary>
public string LiquidExpression { get; set; }
/// <summary>
/// 触发其他流程活动列表
/// </summary>
public List<StatusTriggerConditionNextActDto> NextActList { get; set; }
}
}