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
134
135
136
137
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiConferenceGetResponse.
    /// </summary>
    public class OapiConferenceGetResponse : DingTalkResponse
    {
        /// <summary>
        /// 服务调用结果码
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// 服务调用结果码描述
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
        /// <summary>
        /// 服务调用结果对象
        /// </summary>
        [XmlElement("result")]
        public ConferenceInfoDoDomain Result { get; set; }
 
    /// <summary>
/// ConferenceInfoDoDomain Data Structure.
/// </summary>
[Serializable]
 
public class ConferenceInfoDoDomain : TopObject
{
            /// <summary>
            /// 会务地点
            /// </summary>
            [XmlElement("address")]
            public string Address { get; set; }
    
            /// <summary>
            /// 会务管理员userid
            /// </summary>
            [XmlElement("admin_userid")]
            public string AdminUserid { get; set; }
    
            /// <summary>
            /// 会务筹备者userid列表
            /// </summary>
            [XmlArray("arrange_userid_list")]
            [XmlArrayItem("string")]
            public List<string> ArrangeUseridList { get; set; }
    
            /// <summary>
            /// 会务Id
            /// </summary>
            [XmlElement("conference_id")]
            public string ConferenceId { get; set; }
    
            /// <summary>
            /// 会务简介
            /// </summary>
            [XmlElement("content")]
            public string Content { get; set; }
    
            /// <summary>
            /// 举办会务的企业Id
            /// </summary>
            [XmlElement("corp_id")]
            public string CorpId { get; set; }
    
            /// <summary>
            /// 会务创建者userid
            /// </summary>
            [XmlElement("create_userid")]
            public string CreateUserid { get; set; }
    
            /// <summary>
            /// 会务结束时间,时间戳格式,单位为毫秒
            /// </summary>
            [XmlElement("end_time")]
            public long EndTime { get; set; }
    
            /// <summary>
            /// 最近更新会务信息的userid
            /// </summary>
            [XmlElement("modified_userid")]
            public string ModifiedUserid { get; set; }
    
            /// <summary>
            /// 高德经纬度,格式:longitude,latitude
            /// </summary>
            [XmlElement("poi")]
            public string Poi { get; set; }
    
            /// <summary>
            /// 会务开始时间,时间戳格式,单位为毫秒
            /// </summary>
            [XmlElement("start_time")]
            public long StartTime { get; set; }
    
            /// <summary>
            /// 会务状态,2 - 筹备中,3 - 已发布,10 - 已结束
            /// </summary>
            [XmlElement("status")]
            public long Status { get; set; }
    
            /// <summary>
            /// 会务主题
            /// </summary>
            [XmlElement("topic")]
            public string Topic { get; set; }
    
            /// <summary>
            /// 会务主题图片地址
            /// </summary>
            [XmlElement("topic_pic_url")]
            public string TopicPicUrl { get; set; }
    
            /// <summary>
            /// 会务类型,1 - 年会,2 - 沙龙
            /// </summary>
            [XmlElement("type")]
            public long Type { get; set; }
    
            /// <summary>
            /// 会务信息版本号,信息更新时进行递增
            /// </summary>
            [XmlElement("version")]
            public long Version { get; set; }
}
 
    }
}