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; } } }