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