Files
tnb.server/workflow/Tnb.WorkFlow.Entitys/Entity/FlowTemplateEntity.cs
2023-03-13 15:00:34 +08:00

62 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.Common.Const;
using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.WorkFlow.Entitys.Entity;
/// <summary>
/// 流程引擎.
/// </summary>
[SugarTable("FLOW_TEMPLATE")]
[Tenant(ClaimConst.TENANTID)]
public class FlowTemplateEntity : CLDEntityBase
{
/// <summary>
/// 流程编码.
/// </summary>
[SugarColumn(ColumnName = "F_ENCODE")]
public string? EnCode { get; set; }
/// <summary>
/// 流程名称.
/// </summary>
[SugarColumn(ColumnName = "F_FULLNAME")]
public string? FullName { get; set; }
/// <summary>
/// 流程类型0发起流程1功能流程.
/// </summary>
[SugarColumn(ColumnName = "F_TYPE")]
public int? Type { get; set; }
/// <summary>
/// 流程分类.
/// </summary>
[SugarColumn(ColumnName = "F_CATEGORY")]
public string? Category { get; set; }
/// <summary>
/// 图标.
/// </summary>
[SugarColumn(ColumnName = "F_ICON")]
public string? Icon { get; set; }
/// <summary>
/// 图标背景色.
/// </summary>
[SugarColumn(ColumnName = "F_ICONBACKGROUND")]
public string? IconBackground { get; set; }
/// <summary>
/// 描述.
/// </summary>
[SugarColumn(ColumnName = "F_DESCRIPTION")]
public string? Description { get; set; }
/// <summary>
/// 排序码.
/// </summary>
[SugarColumn(ColumnName = "F_SORTCODE")]
public long? SortCode { get; set; }
}