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.
40 lines
909 B
C#
40 lines
909 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 服务流程触发器
|
|
/// </summary>
|
|
public class StatusTriggerBaseDto
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public string PKId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 触发器代码
|
|
/// </summary>
|
|
public string StatusTriggerCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 触发器名称
|
|
/// </summary>
|
|
public string StatusTriggerName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 触发器说明
|
|
/// </summary>
|
|
public string StatusTriggerNote { get; set; }
|
|
|
|
/// <summary>
|
|
/// 触发条件
|
|
/// </summary>
|
|
public List<StatusTriggerConditionDto> ConditionList { get; set; }
|
|
}
|
|
}
|