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
860 B
C#
40 lines
860 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 StatusTriggerConditionNextActDto
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public string PKId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 触发器主键
|
|
/// </summary>
|
|
public string TriggerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 条件ID
|
|
/// </summary>
|
|
public string ConditionId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务活动主键
|
|
/// </summary>
|
|
public string ServiceActivitiesID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态显示名称
|
|
/// </summary>
|
|
public string ShowName { get; set; }
|
|
}
|
|
}
|