刘磊
2025-11-11 6fed1f731b16c1820a43fc34130a70b21465e2bb
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.MES.Request
{
    public class BindWorkOrder
    {
        /// <summary>
        /// 唯一标识
        /// </summary>
        public string  unionKey {get;set;}
 
        /// <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 workshopCode { get;set;}
 
        /// <summary>
        /// 工单号(焊装工单号/涂装工单号)
        /// </summary>
        public string workOrderNo { get;set;}
 
        /// <summary>
        /// 工单类型 (焊装工单类型/涂装工单类型)
        /// </summary>
        public string workOrderType { get;set;}
 
        /// <summary>
        /// 同步时间
        /// </summary>
        public string messageTime { get;set;}
    }
}