EmployeesAssignmentCompletionReportStructures.cs
1.04 KB
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
38
39
40
41
42
43
44
45
using System;
using System.Collections.Generic;
using System.Linq;
using Sungero.Core;
using Sungero.CoreEntities;
namespace Sungero.Docflow.Structures.EmployeesAssignmentCompletionReport
{
/// <summary>
/// Строчка отчета.
/// </summary>
[Public]
partial class TableLine
{
public int RowIndex { get; set; }
public string ReportSessionId { get; set; }
public int Employee { get; set; }
public string EmployeeName { get; set; }
public bool IsActiveEmployee { get; set; }
public string JobTitle { get; set; }
public string Department { get; set; }
public int? AssignmentCompletion { get; set; }
public int AssignmentsCount { get; set; }
public int AffectDisciplineAssignmentsCount { get; set; }
public int CompletedInTimeAssignmentsCount { get; set; }
public int OverdueAssignmentsCount { get; set; }
public int OverdueCompletedAssignmentsCount { get; set; }
public int OverdueInWorkAssignmentsCount { get; set; }
}
}