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