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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiCollectionFormGetResponse.
    /// </summary>
    public class OapiCollectionFormGetResponse : DingTalkResponse
    {
        /// <summary>
        /// 错误码
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// 错误信息
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
        /// <summary>
        /// 结果
        /// </summary>
        [XmlElement("result")]
        public PageResultDomain Result { get; set; }
 
    /// <summary>
/// ProcessVisibleValueVoDomain Data Structure.
/// </summary>
[Serializable]
 
public class ProcessVisibleValueVoDomain : TopObject
{
            /// <summary>
            /// 可见性类型 0部门 1人员 2角色 3群组cid
            /// </summary>
            [XmlElement("type")]
            public long Type { get; set; }
    
            /// <summary>
            /// 值
            /// </summary>
            [XmlElement("value")]
            public string Value { get; set; }
}
 
    /// <summary>
/// FormSchemaSettingVoDomain Data Structure.
/// </summary>
[Serializable]
 
public class FormSchemaSettingVoDomain : TopObject
{
            /// <summary>
            /// 表单类型
            /// </summary>
            [XmlElement("biz_type")]
            public long BizType { get; set; }
    
            /// <summary>
            /// 创建时间
            /// </summary>
            [XmlElement("create_time")]
            public string CreateTime { get; set; }
    
            /// <summary>
            /// 填表截止时间
            /// </summary>
            [XmlElement("end_time")]
            public string EndTime { get; set; }
    
            /// <summary>
            /// 是否循环填表
            /// </summary>
            [XmlElement("form_type")]
            public long FormType { get; set; }
    
            /// <summary>
            /// 填表周期,周一到周日分别用1-7表示
            /// </summary>
            [XmlArray("loop_days")]
            [XmlArrayItem("number")]
            public List<long> LoopDays { get; set; }
    
            /// <summary>
            /// 填表时间
            /// </summary>
            [XmlElement("loop_time")]
            public string LoopTime { get; set; }
    
            /// <summary>
            /// 应填人数
            /// </summary>
            [XmlElement("should_participation_cnt")]
            public long ShouldParticipationCnt { get; set; }
    
            /// <summary>
            /// 填表是否终止的标记
            /// </summary>
            [XmlElement("stop")]
            public bool Stop { get; set; }
}
 
    /// <summary>
/// PageResultDomain Data Structure.
/// </summary>
[Serializable]
 
public class PageResultDomain : TopObject
{
            /// <summary>
            /// schema
            /// </summary>
            [XmlElement("content")]
            public string Content { get; set; }
    
            /// <summary>
            /// 创建人
            /// </summary>
            [XmlElement("creator")]
            public string Creator { get; set; }
    
            /// <summary>
            /// 填表提示
            /// </summary>
            [XmlElement("memo")]
            public string Memo { get; set; }
    
            /// <summary>
            /// 填表名称
            /// </summary>
            [XmlElement("name")]
            public string Name { get; set; }
    
            /// <summary>
            /// 设置
            /// </summary>
            [XmlElement("setting")]
            public FormSchemaSettingVoDomain Setting { get; set; }
    
            /// <summary>
            /// 应参与人数
            /// </summary>
            [XmlElement("should_participation_cnt")]
            public long ShouldParticipationCnt { get; set; }
    
            /// <summary>
            /// 发送范围
            /// </summary>
            [XmlArray("visible_list")]
            [XmlArrayItem("process_visible_value_vo")]
            public List<ProcessVisibleValueVoDomain> VisibleList { get; set; }
}
 
    }
}