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