duhe
2024-10-25 948bc8f68b05abd2c942217159de1fe31075f8cd
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiAtsStatisticsResumeListResponse.
    /// </summary>
    public class OapiAtsStatisticsResumeListResponse : DingTalkResponse
    {
        /// <summary>
        /// 错误码
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// 错误信息
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
        /// <summary>
        /// 分页结果
        /// </summary>
        [XmlElement("result")]
        public AtsPageResultDomain Result { get; set; }
 
    /// <summary>
/// TopResumeStatisticsVoDomain Data Structure.
/// </summary>
[Serializable]
 
public class TopResumeStatisticsVoDomain : TopObject
{
            /// <summary>
            /// 招聘业务标识
            /// </summary>
            [XmlElement("biz_code")]
            public string BizCode { get; set; }
    
            /// <summary>
            /// 候选人id
            /// </summary>
            [XmlElement("candidate_id")]
            public string CandidateId { get; set; }
    
            /// <summary>
            /// lagou,51job,58tongcheng,zhilian,liepin,boss,other
            /// </summary>
            [XmlElement("channel")]
            public string Channel { get; set; }
    
            /// <summary>
            /// 企业id
            /// </summary>
            [XmlElement("corp_id")]
            public string CorpId { get; set; }
    
            /// <summary>
            /// 创建时间,unix时间戳,单位毫秒
            /// </summary>
            [XmlElement("gmt_create_mils")]
            public long GmtCreateMils { get; set; }
    
            /// <summary>
            /// 更新时间,unix时间戳,单位毫秒
            /// </summary>
            [XmlElement("gmt_modified_mils")]
            public long GmtModifiedMils { get; set; }
    
            /// <summary>
            /// 简历id
            /// </summary>
            [XmlElement("resume_id")]
            public string ResumeId { get; set; }
}
 
    /// <summary>
/// AtsPageResultDomain Data Structure.
/// </summary>
[Serializable]
 
public class AtsPageResultDomain : TopObject
{
            /// <summary>
            /// 是否还有数据
            /// </summary>
            [XmlElement("has_more")]
            public bool HasMore { get; set; }
    
            /// <summary>
            /// 简历信息列表
            /// </summary>
            [XmlArray("list")]
            [XmlArrayItem("top_resume_statistics_vo")]
            public List<TopResumeStatisticsVoDomain> List { get; set; }
    
            /// <summary>
            /// 游标,下次分页请求使用
            /// </summary>
            [XmlElement("next_cursor")]
            public string NextCursor { get; set; }
}
 
    }
}