using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DIXWeb.Entity.Workflow { using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("WorkflowNodeDetail", Schema = "meta")] public class WorkflowNodeDetail { [Key] public int Id { get; set; } public int WorkflowId { get; set; } public int NodeId { get; set; } public int OrgTypeId { get; set; } public int OrgId { get; set; } public int RoleTypeId { get; set; } public int RoleId { get; set; } public int DetailLevel { get; set; } public DateTime CreateTime { get; set; } public int CreateUserId { get; set; } public DateTime ChTime { get; set; } public int ChUserId { get; set; } public string ActiveType { get; set; } } }