1
zrg
2024-10-15 a1e3e548ea03ceb32d07bf9f73f4719dd14f7f2e
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
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api.Util;
using Top.Api;
using Top.Api.DingTalk;
 
namespace DingTalk.Api.Request
{
    /// <summary>
    /// TOP API: dingtalk.oapi.rhino.mos.exec.clothes.unperformed.get
    /// </summary>
    public class OapiRhinoMosExecClothesUnperformedGetRequest : BaseDingTalkRequest<DingTalk.Api.Response.OapiRhinoMosExecClothesUnperformedGetResponse>
    {
        /// <summary>
        /// 入参
        /// </summary>
        public string Req { get; set; }
 
        public GetUnPerformedClothesByOperationReqDomain Req_ { set { this.Req = TopUtils.ObjectToJson(value); } } 
 
        #region IDingTalkRequest Members
 
        public override string GetApiName()
        {
            return "dingtalk.oapi.rhino.mos.exec.clothes.unperformed.get";
        }
 
        public override string GetApiCallType()
        {
            return DingTalkConstants.CALL_TYPE_OAPI;
        }
 
        public override IDictionary<string, string> GetParameters()
        {
            TopDictionary parameters = new TopDictionary();
            parameters.Add("req", this.Req);
            if (this.otherParams != null)
            {
                parameters.AddAll(this.otherParams);
            }
            return parameters;
        }
 
        public override void Validate()
        {
        }
 
    /// <summary>
/// PageDomain Data Structure.
/// </summary>
[Serializable]
 
public class PageDomain : TopObject
{
            /// <summary>
            /// 页大小
            /// </summary>
            [XmlElement("page_size")]
            public Nullable<long> PageSize { get; set; }
    
            /// <summary>
            /// 其实位置
            /// </summary>
            [XmlElement("start")]
            public Nullable<long> Start { get; set; }
}
 
    /// <summary>
/// GetUnPerformedClothesByOperationReqDomain Data Structure.
/// </summary>
[Serializable]
 
public class GetUnPerformedClothesByOperationReqDomain : TopObject
{
            /// <summary>
            /// 业务类型
            /// </summary>
            [XmlArray("biz_types")]
            [XmlArrayItem("string")]
            public List<string> BizTypes { get; set; }
    
            /// <summary>
            /// 工序id
            /// </summary>
            [XmlArray("operation_uids")]
            [XmlArrayItem("number")]
            public List<string> OperationUids { get; set; }
    
            /// <summary>
            /// 订单id
            /// </summary>
            [XmlElement("order_id")]
            public Nullable<long> OrderId { get; set; }
    
            /// <summary>
            /// 分页
            /// </summary>
            [XmlElement("page")]
            public PageDomain Page { get; set; }
    
            /// <summary>
            /// 尺码信息
            /// </summary>
            [XmlElement("size_code")]
            public string SizeCode { get; set; }
    
            /// <summary>
            /// 状态
            /// </summary>
            [XmlArray("status")]
            [XmlArrayItem("string")]
            public List<string> Status { get; set; }
    
            /// <summary>
            /// 租户id
            /// </summary>
            [XmlElement("tenant_id")]
            public string TenantId { get; set; }
    
            /// <summary>
            /// userId
            /// </summary>
            [XmlElement("userid")]
            public string Userid { get; set; }
}
 
        #endregion
    }
}