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.
|
|
|
|
using Furion.DistributedIDGenerator;
|
|
|
|
|
using Myshipping.Application.Entity.TrackingSystem;
|
|
|
|
|
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")]
|
|
|
|
|
[Description("触发器条件明细")]
|
|
|
|
|
public class StatusTriggerConditionInfo : TrackingSystemDbEntity
|
|
|
|
|
{
|
|
|
|
|
public StatusTriggerConditionInfo()
|
|
|
|
|
{
|
|
|
|
|
PK_ID = IDGen.NextID().ToString();
|
|
|
|
|
|
|
|
|
|
CreatedTime = DateTime.Now;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 父主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string P_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 服务活动主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SERVICE_ACTIVITIES_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态显示名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SHOW_NAME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 操作类型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string OPER_TYPE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 操作类型名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string OPER_TYPE_NAME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 操作类型判断值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string OPER_TYPE_VAL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 随即触发类型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string NEXT_ACTION_TYPE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 随即触发名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string NEXT_ACTION_TYPE_NAME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// LIQUID表达式JSON
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string LIQUID_EXPRESSION { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|