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
37
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace DIXWeb.Entity.Workflow
{
    public class ReceiveNodeDetail
    {
        public int Id { get; set; }
        public int NodeId { get; set; }
        public string NodeName { get; set; }
 
        public int OrgTypeId { get; set; }
        public string OrgTypeName { get; set; }
        public int OrgId { get; set; }
        public string OrgName { get; set; }
 
        public int RoleTypeId { get; set; }
        public string RoleTypeName { get; set; }
        public int RoleId { get; set; }
        public string RoleName { get; set; }
        
        public int DetailLevel { get; set; }
        public string ActiveType { get; set; }
 
        public DateTime CreateTime { get; set; }
        public int CreateUserId { get; set; }
        public string CreateUserName { get; set; }
        public DateTime ChangeTime { get; set; }
        public int ChangeUserId { get; set; }
        public string ChangeUserName { get; set; }
 
        public int WorkflowId { get; set; }
    }
}