| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using OASystem.Domain.Entities.Groups;
- using OASystem.Domain.Enums;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Groups
- {
- public class ProcessOverView
- {
- }
- public class ConfProcessOverInfoView
- {
- public int Id { get; set; }
- public int GroupId { get; set; }
- public ConfProcessType ProcessType { get; set; }
- public string ProcessName { get; set; }
- public List<ConfProcessNodeInfoView> Nodes { get; set; }
- }
- public class ConfProcessNodeInfoView
- {
- public int Id { get; set; }
- public int ProcessId { get; set; }
- public int NodeOrder { get; set; }
- public string NodeName { get; set; }
- public string NodeDescTips { get; set; }
- public ProcessStatus OverallStatus { get; set; }
- public List<ParticipatorInfo> Participators { get; set; }
- public string StatusText { get; set; }
- public string Operator { get; set; }
- public string OpeateTime { get; set; }
- public string ActualDone { get; set; }
- public bool IsEnaFileUpBtn { get; set; }
- public bool IsFileUp { get; set; }
- }
- }
|