zrg
2024-08-16 18865d8bf24382e850e661dec6cca0e8b9dba6ae
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiAttendanceScheduleListbydayResponse.
    /// </summary>
    public class OapiAttendanceScheduleListbydayResponse : DingTalkResponse
    {
        /// <summary>
        /// 错误码
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// 错误信息
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
        /// <summary>
        /// demo
        /// </summary>
        [XmlArray("result")]
        [XmlArrayItem("top_schedule_vo")]
        public List<TopScheduleVoDomain> Result { get; set; }
 
        /// <summary>
        /// 成功标记
        /// </summary>
        [XmlElement("success")]
        public bool Success { get; set; }
 
    /// <summary>
/// TopScheduleVoDomain Data Structure.
/// </summary>
[Serializable]
 
public class TopScheduleVoDomain : TopObject
{
            /// <summary>
            /// 审批类型
            /// </summary>
            [XmlElement("approve_biz_type")]
            public long ApproveBizType { get; set; }
    
            /// <summary>
            /// 审批单id
            /// </summary>
            [XmlElement("approve_id")]
            public long ApproveId { get; set; }
    
            /// <summary>
            /// 审批单标签名
            /// </summary>
            [XmlElement("approve_tag_name")]
            public string ApproveTagName { get; set; }
    
            /// <summary>
            /// 审批类型
            /// </summary>
            [XmlElement("approve_type")]
            public string ApproveType { get; set; }
    
            /// <summary>
            /// 迟到早退线
            /// </summary>
            [XmlElement("base_check_time")]
            public string BaseCheckTime { get; set; }
    
            /// <summary>
            /// 开始打卡时间
            /// </summary>
            [XmlElement("check_begin_time")]
            public string CheckBeginTime { get; set; }
    
            /// <summary>
            /// 打卡时间
            /// </summary>
            [XmlElement("check_date_time")]
            public string CheckDateTime { get; set; }
    
            /// <summary>
            /// 结束打卡时间
            /// </summary>
            [XmlElement("check_end_time")]
            public string CheckEndTime { get; set; }
    
            /// <summary>
            /// 打卡状态
            /// </summary>
            [XmlElement("check_status")]
            public string CheckStatus { get; set; }
    
            /// <summary>
            /// 考勤类型,上班/下班
            /// </summary>
            [XmlElement("check_type")]
            public string CheckType { get; set; }
    
            /// <summary>
            /// 班次id
            /// </summary>
            [XmlElement("class_id")]
            public long ClassId { get; set; }
    
            /// <summary>
            /// 班次名称
            /// </summary>
            [XmlElement("class_name")]
            public string ClassName { get; set; }
    
            /// <summary>
            /// 班次version
            /// </summary>
            [XmlElement("class_setting_id")]
            public long ClassSettingId { get; set; }
    
            /// <summary>
            /// 公司id
            /// </summary>
            [XmlElement("corp_id")]
            public string CorpId { get; set; }
    
            /// <summary>
            /// 扩展字段
            /// </summary>
            [XmlElement("features")]
            public string Features { get; set; }
    
            /// <summary>
            /// 创建时间
            /// </summary>
            [XmlElement("gmt_create")]
            public string GmtCreate { get; set; }
    
            /// <summary>
            /// 更新时间
            /// </summary>
            [XmlElement("gmt_modified")]
            public string GmtModified { get; set; }
    
            /// <summary>
            /// 考勤组id
            /// </summary>
            [XmlElement("group_id")]
            public long GroupId { get; set; }
    
            /// <summary>
            /// id
            /// </summary>
            [XmlElement("id")]
            public long Id { get; set; }
    
            /// <summary>
            /// 是否休息
            /// </summary>
            [XmlElement("is_rest")]
            public string IsRest { get; set; }
    
            /// <summary>
            /// 计划打卡时间
            /// </summary>
            [XmlElement("plan_check_time")]
            public string PlanCheckTime { get; set; }
    
            /// <summary>
            /// 根据弹性、打卡结果等综合计算的卡点,与个人月历页保持一致
            /// </summary>
            [XmlElement("real_plan_time")]
            public string RealPlanTime { get; set; }
    
            /// <summary>
            /// 用户userId
            /// </summary>
            [XmlElement("user_id")]
            public string UserId { get; set; }
    
            /// <summary>
            /// 工作天
            /// </summary>
            [XmlElement("work_date")]
            public string WorkDate { get; set; }
}
 
    }
}