namespace MiaoYu.Repository.Admin.Entities.ApprovalFlow;
///
/// 工作流节点表
///
[EntityDescription(FieldIgnored = true)]
public class FlowNode : DefaultEntity
{
///
/// 流程id
///
///
public Guid FlowId { get; set; }
///
/// 序号
///
///
public int? Sort { get; set; }
///
/// 节点名称
///
///
public string? Name { get; set; }
///
/// 角色Id
///
///
public Guid RoleId { get; set; }
///
/// 备注
///
///
public string? Remark { get; set; }
}