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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
 
namespace DingTalk.Api.Response
{
    /// <summary>
    /// OapiRhinoMosLayoutOperationdefsListsimpleResponse.
    /// </summary>
    public class OapiRhinoMosLayoutOperationdefsListsimpleResponse : DingTalkResponse
    {
        /// <summary>
        /// 错误码
        /// </summary>
        [XmlElement("errcode")]
        public long Errcode { get; set; }
 
        /// <summary>
        /// 错误提示
        /// </summary>
        [XmlElement("errmsg")]
        public string Errmsg { get; set; }
 
        /// <summary>
        /// 工序定义图
        /// </summary>
        [XmlArray("result")]
        [XmlArrayItem("operation_def_dto")]
        public List<OperationDefDtoDomain> Result { get; set; }
 
    /// <summary>
/// OperationDefDtoDomain Data Structure.
/// </summary>
[Serializable]
 
public class OperationDefDtoDomain : TopObject
{
            /// <summary>
            /// 适用尺码(即将下线,后续迁移到applicable_size_list)
            /// </summary>
            [XmlElement("applicable_size_code")]
            public string ApplicableSizeCode { get; set; }
    
            /// <summary>
            /// 适用尺码列表
            /// </summary>
            [XmlArray("applicable_size_list")]
            [XmlArrayItem("string")]
            public List<string> ApplicableSizeList { get; set; }
    
            /// <summary>
            /// 是否需要调度
            /// </summary>
            [XmlElement("auto_schedule")]
            public bool AutoSchedule { get; set; }
    
            /// <summary>
            /// 业务编码
            /// </summary>
            [XmlElement("biz_code")]
            public string BizCode { get; set; }
    
            /// <summary>
            /// 工艺内容ID(bop)
            /// </summary>
            [XmlElement("biz_id_dtech_item")]
            public string BizIdDtechItem { get; set; }
    
            /// <summary>
            /// 业务来源
            /// </summary>
            [XmlElement("biz_source")]
            public string BizSource { get; set; }
    
            /// <summary>
            /// 进入条件:ANY_MATCH/ALL_MATCH
            /// </summary>
            [XmlElement("enter_condition")]
            public string EnterCondition { get; set; }
    
            /// <summary>
            /// 执行系统
            /// </summary>
            [XmlElement("exec_system")]
            public string ExecSystem { get; set; }
    
            /// <summary>
            /// PaaSflowID(只用于返回,保存会自增)
            /// </summary>
            [XmlElement("flow_id")]
            public long FlowId { get; set; }
    
            /// <summary>
            /// 工序定义版本
            /// </summary>
            [XmlElement("flow_version")]
            public long FlowVersion { get; set; }
    
            /// <summary>
            /// 工艺内容版本(bop)
            /// </summary>
            [XmlElement("item_version")]
            public long ItemVersion { get; set; }
    
            /// <summary>
            /// 工序名称
            /// </summary>
            [XmlElement("name")]
            public string Name { get; set; }
    
            /// <summary>
            /// 工序外部ID
            /// </summary>
            [XmlElement("operation_external_id")]
            public string OperationExternalId { get; set; }
    
            /// <summary>
            /// 工序类型:ASSIST/QUALITY_INSPECT/TECHNOLOGY
            /// </summary>
            [XmlElement("operation_type")]
            public string OperationType { get; set; }
    
            /// <summary>
            /// 工序唯一ID
            /// </summary>
            [XmlElement("operation_uid")]
            public long OperationUid { get; set; }
    
            /// <summary>
            /// 工序编码(同订单内唯一)
            /// </summary>
            [XmlElement("process_code")]
            public string ProcessCode { get; set; }
    
            /// <summary>
            /// 工序能力类型:SJ/PP/TR等
            /// </summary>
            [XmlElement("process_type_code")]
            public string ProcessTypeCode { get; set; }
    
            /// <summary>
            /// 工段CODE:F-SL/C..
            /// </summary>
            [XmlElement("section_code")]
            public string SectionCode { get; set; }
    
            /// <summary>
            /// 工段名称:缝制-碎料/裁床..
            /// </summary>
            [XmlElement("section_name")]
            public string SectionName { get; set; }
    
            /// <summary>
            /// 是否跳过(不生产)
            /// </summary>
            [XmlElement("skip")]
            public bool Skip { get; set; }
    
            /// <summary>
            /// 标准工时/秒
            /// </summary>
            [XmlElement("std_cost")]
            public string StdCost { get; set; }
}
 
    }
}