添加项目文件。
This commit is contained in:
61
workflow/Tnb.WorkFlow.Entitys/Entity/FlowTemplateEntity.cs
Normal file
61
workflow/Tnb.WorkFlow.Entitys/Entity/FlowTemplateEntity.cs
Normal file
@@ -0,0 +1,61 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user