添加项目文件。
This commit is contained in:
31
workflow/Tnb.WorkFlow.Entitys/Entity/FlowRejectDataEntity.cs
Normal file
31
workflow/Tnb.WorkFlow.Entitys/Entity/FlowRejectDataEntity.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using JNPF.Common.Const;
|
||||
using JNPF.Common.Contracts;
|
||||
using SqlSugar;
|
||||
|
||||
namespace JNPF.WorkFlow.Entitys.Entity;
|
||||
|
||||
/// <summary>
|
||||
/// 流程驳回数据.
|
||||
/// </summary>
|
||||
[SugarTable("FLOW_REJECTDATA")]
|
||||
[Tenant(ClaimConst.TENANTID)]
|
||||
public class FlowRejectDataEntity : EntityBase<string>
|
||||
{
|
||||
/// <summary>
|
||||
/// 任务数据.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_TASKJSON")]
|
||||
public string? TaskJson { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 节点数据.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_TaskNODEJSON")]
|
||||
public string? TaskNodeJson { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 经办数据.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_TASKOPERATORJSON")]
|
||||
public string? TaskOperatorJson { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user