duan
2024-08-21 22bd5bc1ce2b49284cc2f042c7f4f48619fcf85b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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; }
        
    }
}