陈勇
2026-03-10 fc9cba5f058089887aa7061d2e6b4006b9e04a9a
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Common
{
    /// <summary>
    /// 总装工单信息
    /// </summary>
    public class removeWorkOrderInfoRespon
    {
        /// <summary>
        ///  状态编码 200为成功,500为失败
        /// </summary>
        public string code { get; set; }
 
        /// <summary>
        ///  信息描述
        /// </summary>
        public string msg { get; set; }
 
        /// <summary>
        /// 数据对象
        /// </summary>
        public object data { get; set; }
 
        /// <summary>
        /// 订单号
        /// </summary>
        public string vehicleOrderNo { get; set; }
 
        /// <summary>
        /// 工单号
        /// </summary>
        public string workOrderNo { get; set; }
 
        /// <summary>
        /// orderType
        /// </summary>
        public string orderType { get; set; }
 
        /// <summary>
        /// 撤排状态 反馈结果:成功
        ///                 失败:PVI已绑定、车身锁定
        /// </summary>
        public string removeStatus { get; set; }
    }
    
}