username@email.com
2025-04-27 15eb82df2d6ec539e9d4245bfe08d531e8eb6379
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
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; }
 
        public string Content { get; set; }
 
        public string Tongguojujue { get; set; }
        public string Step { 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; }
        public string Content { get; set; }
 
        public string Tongguojujue { get; set; }
        public string Step { get; set; }
 
    }
 
    public partial class DateBiJiaoDTO
    {
        public DateTime? StartTime { get; set; }
        public DateTime? EndTime { get; set; }
    }
}