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.
47 lines
1.2 KiB
C#
47 lines
1.2 KiB
C#
using Myshipping.Core;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 触发器条件触发其他流程活动
|
|
/// </summary>
|
|
[SugarTable("status_trigger_condition_next_act")]
|
|
[Description("触发器条件触发其他流程活动")]
|
|
[Tenant(CommonConst.MasterDb)]
|
|
public class StatusTriggerConditionNextActInfo
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)]
|
|
public string PK_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 触发器主键
|
|
/// </summary>
|
|
public string TRIGGER_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 条件ID
|
|
/// </summary>
|
|
public string CONDITION_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务活动主键
|
|
/// </summary>
|
|
public string SERVICE_ACTIVITIES_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态显示名称
|
|
/// </summary>
|
|
public string SHOW_NAME { get; set; }
|
|
}
|
|
}
|