using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.Json.Serialization; using System.Threading.Tasks; namespace Wex.Sdk.Tel { public class QueryTelRequest : IWexRequest { public QueryTelRequest() { Url = "api/reg/device"; } [JsonIgnore] public string Url { get; } /// /// 工号 /// [JsonPropertyName("zLoginNumber")] public string StaffNo { get; set; } /// /// 分机号 /// [JsonPropertyName("device")] public string TelNo { get; set; } /// /// 会议ID /// public string MeetId { get; set; } /// /// 分机状态 /// public int? Status { get; set; } /// /// 角色组别 /// [JsonPropertyName("zRole")] public string Roles { get; set; } /// /// 是否签入 /// public int? Sigin { get; set; } /// /// 坐席状态 /// public int? AgentStatus { get; set; } } }