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.
68 lines
1.6 KiB
C#
68 lines
1.6 KiB
C#
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using Myshipping.Core.Entity;
|
|
using NPOI.SS.UserModel;
|
|
using MimeKit.Cryptography;
|
|
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 任务租户流程配置
|
|
/// </summary>
|
|
[SugarTable("task_flow_tenant")]
|
|
[Description("租户任务流程配置 ")]
|
|
public class TaskFlowTenant : TaskManageDbEntity
|
|
{
|
|
/// <summary>
|
|
/// 流程编码
|
|
/// </summary>
|
|
public string FlowCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 方法名称
|
|
/// </summary>
|
|
public string MethodName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 上级方法Id
|
|
/// </summary>
|
|
public string PId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 是否主入口方法
|
|
/// </summary>
|
|
public bool IsMain { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否bool类型返回
|
|
/// </summary>
|
|
public bool IsBoolReturn { get; set; }
|
|
/// <summary>
|
|
/// 执行为true后续方法
|
|
/// </summary>
|
|
public string TrueMethod { get;set; }
|
|
|
|
/// <summary>
|
|
/// 执行为false后续方法
|
|
/// </summary>
|
|
public string FalseMethod { get;set; }
|
|
|
|
/// <summary>
|
|
/// apiId
|
|
/// </summary>
|
|
public string TaskApiId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 平台代码
|
|
/// </summary>
|
|
public string SYSTEM_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 平台名称
|
|
/// </summary>
|
|
public string SYSTEM_NAME { get; set; }
|
|
}
|
|
}
|