刘磊
2025-11-07 681acbb43f21000f8acf732f94e83042f0275fff
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Common.MES
{
    /// <summary>
    /// BDC预绑定工单
    /// </summary>
    public class PreBind
    {
        /// <summary>
        /// 工厂
        /// </summary>
        public string plantCode { get; set; }
 
        /// <summary>
        /// 工位号
        /// </summary>
        public string stationCode { get; set; }
 
        /// <summary>
        /// PVI号(车身上)
        /// </summary>
        public string pvi { get; set; }
 
        /// <summary>
        /// 工单号 (一单到底时为空)
        /// </summary>
        public string workOrderNo { get; set; }
 
        /// <summary>
        /// 预绑定工单号 (一单到底时为空)
        /// </summary>
        public string preWorkOrderNo { get; set; }
 
        /// <summary>
        /// 预绑定订单号
        /// </summary>
        public string preVehicleOrderNo { get; set; }
    }
 
}