1
duan
2024-08-21 f71a02229c1ba00fbecaead19256593ffb052753
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace DIXWeb.Entity.Workflow
{
    public class ReceiveBillProcess
    {
        public string NodeName { get; set; }
        public int OrderNo { get; set; }
        public int ActionType { get; set; }
        public string UserNo { get; set; }
        public string UserName { get; set; }
        public string RoleName { get; set; }
        public string Remark { get; set; }
        public string AppendixUrl { get; set; }
        public string ApproveTimeStr { get; set; }
        public string ActiveTimeStr { get; set; }
    }
}