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
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiRhinoMosExecClothesGetResponse.
    /// </summary>
    public class OapiRhinoMosExecClothesGetResponse : DingTalkResponse
    {
        /// <summary>
        /// 钉钉平台错误码
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// 错误信息
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
        /// <summary>
        /// 额外错误信息
        /// </summary>
        [XmlElement("external_msg_info")]
        public string ExternalMsgInfo { get; set; }
 
        /// <summary>
        /// 衣服详情
        /// </summary>
        [XmlArray("model")]
        [XmlArrayItem("clothes_dto")]
        public List<ClothesDtoDomain> Model { get; set; }
 
        /// <summary>
        /// 是否成功
        /// </summary>
        [XmlElement("success")]
        public bool Success { get; set; }
 
    /// <summary>
/// ClothesDtoDomain Data Structure.
/// </summary>
[Serializable]
 
public class ClothesDtoDomain : TopObject
{
            /// <summary>
            /// 业务类型
            /// </summary>
            [XmlElement("biz_type")]
            public string BizType { get; set; }
    
            /// <summary>
            /// 颜色ID
            /// </summary>
            [XmlElement("color_id")]
            public long ColorId { get; set; }
    
            /// <summary>
            /// 颜色名称
            /// </summary>
            [XmlElement("color_name")]
            public string ColorName { get; set; }
    
            /// <summary>
            /// 创建类型
            /// </summary>
            [XmlElement("create_type")]
            public string CreateType { get; set; }
    
            /// <summary>
            /// 衣服ID
            /// </summary>
            [XmlElement("id")]
            public long Id { get; set; }
    
            /// <summary>
            /// 订单ID
            /// </summary>
            [XmlElement("order_id")]
            public long OrderId { get; set; }
    
            /// <summary>
            /// 尺码Code
            /// </summary>
            [XmlElement("size_code")]
            public string SizeCode { get; set; }
    
            /// <summary>
            /// 尺码名称
            /// </summary>
            [XmlElement("size_name")]
            public string SizeName { get; set; }
    
            /// <summary>
            /// 来源ID
            /// </summary>
            [XmlElement("source_id")]
            public string SourceId { get; set; }
    
            /// <summary>
            /// 来源类型
            /// </summary>
            [XmlElement("source_type")]
            public string SourceType { get; set; }
    
            /// <summary>
            /// 状态
            /// </summary>
            [XmlElement("status")]
            public string Status { get; set; }
    
            /// <summary>
            /// 租户ID
            /// </summary>
            [XmlElement("tenant_id")]
            public string TenantId { get; set; }
}
 
    }
}