using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiRhinoMosSpaceWorkerCheckInListResponse. /// public class OapiRhinoMosSpaceWorkerCheckInListResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 结果 /// [XmlArray("model")] [XmlArrayItem("prod_workstation_worker_check_dto")] public List Model { get; set; } /// /// ProdWorkstationWorkerCheckDtoDomain Data Structure. /// [Serializable] public class ProdWorkstationWorkerCheckDtoDomain : 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; } /// /// 站位code /// [XmlElement("prod_workstation_code")] public string ProdWorkstationCode { get; set; } /// /// 租户ID /// [XmlElement("tenant_id")] public string TenantId { get; set; } /// /// 工号 /// [XmlElement("work_no")] public string WorkNo { get; set; } } } }