添加项目文件。
This commit is contained in:
49
workflow/Tnb.WorkFlow.Entitys/Entity/FlowUserEntity.cs
Normal file
49
workflow/Tnb.WorkFlow.Entitys/Entity/FlowUserEntity.cs
Normal file
@@ -0,0 +1,49 @@
|
||||
using JNPF.Common.Const;
|
||||
using JNPF.Common.Contracts;
|
||||
using SqlSugar;
|
||||
|
||||
namespace JNPF.WorkFlow.Entitys.Entity;
|
||||
|
||||
/// <summary>
|
||||
/// 流程任务发起人.
|
||||
/// </summary>
|
||||
[SugarTable("FLOW_USER")]
|
||||
[Tenant(ClaimConst.TENANTID)]
|
||||
public class FlowUserEntity : EntityBase<string>
|
||||
{
|
||||
/// <summary>
|
||||
/// 任务id.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_TASKID")]
|
||||
public string? TaskId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 组织主键.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_ORGANIZEID")]
|
||||
public string? OrganizeId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 岗位主键.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_POSITIONID")]
|
||||
public string? PositionId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 主管主键.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_MANAGERID")]
|
||||
public string? ManagerId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 上级用户.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_SUPERIOR")]
|
||||
public string? Superior { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 下属用户.
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "F_SUBORDINATE")]
|
||||
public string? Subordinate { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user