username@email.com
2021-06-10 c888afad7b611e6341b8e733eff5e651ae82695b
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
using System;
using System.Collections.Generic;
 
#nullable disable
 
namespace DTO
{
    /// <summary>
    /// 签到管理
    /// </summary>
    public partial class AdmSignInDTO
    {
        public string Id { get; set; }
        public string UserId           { get; set; }
        public DateTime SgninDate   { get; set; }
        public DateTime? MorningIn   { get; set; }
        public DateTime? MorningOut  { get; set; }
        public DateTime? AfternoonIn  { get; set; }
        public DateTime? AfternoonOut { get; set; }
        public DateTime? OvertimeIn  { get; set; }
        public DateTime? OvertimeOut { get; set; }
        public string RecStatus { get; set; }
        public string Creater { get; set; }
        public DateTime Createtime { get; set; }
        public string Modifier { get; set; }
        public DateTime Modifytime { get; set; }
    }
 
 
    public partial class SigninListDTO
    {
        public string Id { get; set; }
        public string UserId { get; set; }
        public string UserName { get; set; }
        public string DeptName { get; set; }
        public string UserDept { get; set; }
        public string SgninDate { get; set; }
        public string Afternoon { get; set; }
        public string Morning { get; set; }
        public string Overtime { get; set; } 
 
    }
 
    public partial class AdmSignInDTOSearch : SearchEntity
    {
        public string userId { get; set; }
        public int Year { get; set; }
        public int Month { get; set; }
 
    }
 
 
    /// <summary>
    /// 请假
    /// </summary>
 
    public partial class AdmAskLeaveDTO
    {
        public string Id { get; set; }
        public string SigninId { get; set; }
        public string Lavetype { get; set; }
        public DateTime? StratTime { get; set; }
        public string StratTimeName { get; set; }
        public string StratPoint { get; set; }
        public DateTime? EndTime { get; set; }
        public string EndTimeName { get; set; }
        public string EndPoint { get; set; }
        public int? LaveDay { get; set; }
        public int? LavehHour { get; set; }
        public string Remark { get; set; }
        public string ShenpiStatus { get; set; }
        public string RecStatus { get; set; }
        public string Creater { get; set; }
        public DateTime Createtime { get; set; }
        public string Modifier { get; set; }
        public DateTime Modifytime { get; set; }
        public string[] attachmentid { get; set; }
        public string[] Filepath { get; set; }
        public string[] Filefullname { get; set; }
 
        public string CreaterName { get; set; }
        public string Tittle { get; set; }
    }
 
 
    /// <summary>
    /// 销假
    /// </summary>
    public partial class AdmAskLeaveOffDTO
    {
        public string Id { get; set; }
        public string SigninId { get; set; }
        public string Lavetype { get; set; }
        public DateTime? StratTime { get; set; }
        public string StratTimeName { get; set; }
        public string StratPoint { get; set; }
        public DateTime? EndTime { get; set; }
        public string EndTimeName { get; set; }
        public string EndPoint { get; set; }
        public string MedicalRecord { get; set; }
        public string ShenpiStatus { get; set; }
        public string Remark { get; set; }
        public string RecStatus { get; set; }
        public string Creater { get; set; }
        public DateTime Createtime { get; set; }
        public string Modifier { get; set; }
        public DateTime Modifytime { get; set; }
        public string[] attachmentid { get; set; }
        public string[] Filepath { get; set; }
        public string[] Filefullname { get; set; }
 
        public string CreaterName { get; set; }
        public string Tittle { get; set; }
 
    }
}