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
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiRhinoMosSpaceDeviceCheckInListbydeviceResponse.
    /// </summary>
    public class OapiRhinoMosSpaceDeviceCheckInListbydeviceResponse : DingTalkResponse
    {
        /// <summary>
        /// error_code
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// 错误信息
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
        /// <summary>
        /// 结果
        /// </summary>
        [XmlArray("model")]
        [XmlArrayItem("prod_workstation_device_check_dto")]
        public List<ProdWorkstationDeviceCheckDtoDomain> Model { get; set; }
 
    /// <summary>
/// ProdWorkstationDeviceCheckDtoDomain Data Structure.
/// </summary>
[Serializable]
 
public class ProdWorkstationDeviceCheckDtoDomain : TopObject
{
            /// <summary>
            /// 登入时间
            /// </summary>
            [XmlElement("check_in_time")]
            public string CheckInTime { get; set; }
    
            /// <summary>
            /// 登出时间
            /// </summary>
            [XmlElement("check_out_time")]
            public string CheckOutTime { get; set; }
    
            /// <summary>
            /// 登入登出状态
            /// </summary>
            [XmlElement("check_status")]
            public string CheckStatus { get; set; }
    
            /// <summary>
            /// device_id
            /// </summary>
            [XmlElement("device_id")]
            public long DeviceId { get; set; }
    
            /// <summary>
            /// 站位code
            /// </summary>
            [XmlElement("prod_workstation_code")]
            public string ProdWorkstationCode { get; set; }
    
            /// <summary>
            /// 租户ID
            /// </summary>
            [XmlElement("tenant_id")]
            public string TenantId { get; set; }
}
 
    }
}