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
138
139
140
141
142
143
144
145
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiRhinoSalesOrderCustomInfoQueryResponse.
    /// </summary>
    public class OapiRhinoSalesOrderCustomInfoQueryResponse : DingTalkResponse
    {
        /// <summary>
        /// 响应码
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// 调用信息
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
        /// <summary>
        /// 返回内容
        /// </summary>
        [XmlElement("model")]
        public OpenApiSalesOrderQueryCustomInfoResultDomain Model { get; set; }
 
    /// <summary>
/// OpenApiSalesOrderCustomInfoDtoDomain Data Structure.
/// </summary>
[Serializable]
 
public class OpenApiSalesOrderCustomInfoDtoDomain : TopObject
{
            /// <summary>
            /// 局定需求id
            /// </summary>
            [XmlElement("biz_id_customer_order")]
            public string BizIdCustomerOrder { get; set; }
    
            /// <summary>
            /// 2C订单下单时间
            /// </summary>
            [XmlElement("gmt_order_create")]
            public string GmtOrderCreate { get; set; }
    
            /// <summary>
            /// 2C订单计划交期时间
            /// </summary>
            [XmlElement("gmt_planned_delivery")]
            public string GmtPlannedDelivery { get; set; }
    
            /// <summary>
            /// 2C订单制造域计划完成时间
            /// </summary>
            [XmlElement("gmt_planned_production_finished")]
            public string GmtPlannedProductionFinished { get; set; }
    
            /// <summary>
            /// 图片链接
            /// </summary>
            [XmlElement("img_url")]
            public string ImgUrl { get; set; }
    
            /// <summary>
            /// 对应生产订单id
            /// </summary>
            [XmlElement("product_order_id")]
            public long ProductOrderId { get; set; }
    
            /// <summary>
            /// 开始生产时间
            /// </summary>
            [XmlElement("production_time")]
            public string ProductionTime { get; set; }
    
            /// <summary>
            /// 数量
            /// </summary>
            [XmlElement("quantity")]
            public long Quantity { get; set; }
    
            /// <summary>
            /// 尺码ID
            /// </summary>
            [XmlElement("size_id")]
            public long SizeId { get; set; }
    
            /// <summary>
            /// 尺码名称
            /// </summary>
            [XmlElement("size_name")]
            public string SizeName { get; set; }
    
            /// <summary>
            /// 是否跳过定制(印空花)
            /// </summary>
            [XmlElement("skip_customized")]
            public bool SkipCustomized { get; set; }
    
            /// <summary>
            /// 状态,WAIT_PRODUCTION - 待生产,PRODUCING - 生产中, CLOSED - 已关单, CANCELLED - 已取消
            /// </summary>
            [XmlElement("status")]
            public string Status { get; set; }
}
 
    /// <summary>
/// OpenApiSalesOrderQueryCustomInfoResultDomain Data Structure.
/// </summary>
[Serializable]
 
public class OpenApiSalesOrderQueryCustomInfoResultDomain : TopObject
{
            /// <summary>
            /// 2C订单列表
            /// </summary>
            [XmlArray("list")]
            [XmlArrayItem("open_api_sales_order_custom_info_dto")]
            public List<OpenApiSalesOrderCustomInfoDtoDomain> List { get; set; }
    
            /// <summary>
            /// 当前页数
            /// </summary>
            [XmlElement("page")]
            public long Page { get; set; }
    
            /// <summary>
            /// 分页大小
            /// </summary>
            [XmlElement("page_size")]
            public long PageSize { get; set; }
    
            /// <summary>
            /// 总数
            /// </summary>
            [XmlElement("total")]
            public long Total { get; set; }
}
 
    }
}