添加项目文件。
This commit is contained in:
47
workflow/Tnb.WorkFlow.Entitys/Entity/FlowCandidatesEntity.cs
Normal file
47
workflow/Tnb.WorkFlow.Entitys/Entity/FlowCandidatesEntity.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using SqlSugar;
|
||||
|
||||
namespace JNPF.WorkFlow.Entitys.Entity;
|
||||
|
||||
/// <summary>
|
||||
/// 流程候选人.
|
||||
/// </summary>
|
||||
[SugarTable("FLOW_CANDIDATES")]
|
||||
public class FlowCandidatesEntity : EntityBase<string>
|
||||
{
|
||||
/// <summary>
|
||||
/// 任务id.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_TASKID")]
|
||||
public string? TaskId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 节点id.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_TASKNODEID")]
|
||||
public string? TaskNodeId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 审批人id.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_HANDLEID")]
|
||||
public string? HandleId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 审批人账号.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_ACCOUNT")]
|
||||
public string? Account { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 候选人.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_CANDIDATES")]
|
||||
public string? Candidates { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 经办id.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_TASKOPERATORID")]
|
||||
public string? TaskOperatorId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user