using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiSmartworkHrmEmployeeFieldListResponse. /// public class OapiSmartworkHrmEmployeeFieldListResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误描述 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 结果集 /// [XmlArray("result")] [XmlArrayItem("field_meta_info")] public List Result { get; set; } /// /// 成功标记 /// [XmlElement("success")] public bool Success { get; set; } /// /// FieldMetaInfoDomain Data Structure. /// [Serializable] public class FieldMetaInfoDomain : TopObject { /// /// 字段code /// [XmlElement("field_code")] public string FieldCode { get; set; } /// /// 字段描述 /// [XmlElement("field_name")] public string FieldName { get; set; } /// /// 字段类型 /// [XmlElement("field_type")] public string FieldType { get; set; } } } }