zrg
2024-08-16 18865d8bf24382e850e661dec6cca0e8b9dba6ae
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiHireStatisticsBizflowListResponse.
    /// </summary>
    public class OapiHireStatisticsBizflowListResponse : DingTalkResponse
    {
        /// <summary>
        /// 错误码
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// 错误信息
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
        /// <summary>
        /// 分页结果
        /// </summary>
        [XmlElement("result")]
        public DdAtsPageResultDomain Result { get; set; }
 
    /// <summary>
/// TopBizFlowStatisticsVoDomain Data Structure.
/// </summary>
[Serializable]
 
public class TopBizFlowStatisticsVoDomain : TopObject
{
            /// <summary>
            /// 候选人id
            /// </summary>
            [XmlElement("candidate_id")]
            public string CandidateId { get; set; }
    
            /// <summary>
            /// 企业id
            /// </summary>
            [XmlElement("corp_id")]
            public string CorpId { get; set; }
    
            /// <summary>
            /// 创建人userid
            /// </summary>
            [XmlElement("creator_userid")]
            public string CreatorUserid { get; set; }
    
            /// <summary>
            /// 应聘流程id
            /// </summary>
            [XmlElement("flow_id")]
            public string FlowId { get; set; }
    
            /// <summary>
            /// 应聘状态  11:待初筛  12:初筛通过 13:初筛不通过  21: 应聘流程中  22:应聘通过  23:应聘不通过(不录用)  31: offer流程中  32: offer通过(录用)  33:offer失败  34: offer取消(取消录用)  41:待入职  42:已入职
            /// </summary>
            [XmlElement("flow_status")]
            public long FlowStatus { 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("job_id")]
            public string JobId { get; set; }
    
            /// <summary>
            /// 负责人userid
            /// </summary>
            [XmlElement("owner_userid")]
            public string OwnerUserid { get; set; }
    
            /// <summary>
            /// 应聘id
            /// </summary>
            [XmlElement("recruit_id")]
            public string RecruitId { get; set; }
    
            /// <summary>
            /// 简历id
            /// </summary>
            [XmlElement("resume_id")]
            public string ResumeId { get; set; }
}
 
    /// <summary>
/// DdAtsPageResultDomain Data Structure.
/// </summary>
[Serializable]
 
public class DdAtsPageResultDomain : TopObject
{
            /// <summary>
            /// 是否还有数据
            /// </summary>
            [XmlElement("has_more")]
            public bool HasMore { get; set; }
    
            /// <summary>
            /// 职位信息列表
            /// </summary>
            [XmlArray("list")]
            [XmlArrayItem("top_biz_flow_statistics_vo")]
            public List<TopBizFlowStatisticsVoDomain> List { get; set; }
    
            /// <summary>
            /// 游标,下次分页请求使用
            /// </summary>
            [XmlElement("next_cursor")]
            public string NextCursor { get; set; }
}
 
    }
}