qinchulong
2025-03-29 039a4a5433e7f80adc88b491b549e5d9486e4f9a
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace WIDESEA_Common
{
    public enum DBOperateType
    {
        /// <summary>
        /// 入库申请(输送线)
        /// </summary>
        InboundRequest = 32001,
        /// <summary>
        /// 设备信息(输送线)
        /// </summary>
        EquipmentInfo,
        /// <summary>
        /// 设备状态(输送线)
        /// </summary>
        EquipmentState,
        SCOutStation = 32002,
        /// <summary>
        /// 二楼出库(输送线)
        /// </summary>
        RGVOutStation=32020,
        /// <summary>
        /// 入库申请(输送线二楼,预料回库)
        /// </summary>
        SecondInboundRequest = 32021,
 
        /// <summary>
        /// 质检回库
        /// </summary>
        SendQualityRequest=32020,
 
        /// <summary>
        /// 线体信息校验
        /// </summary>
        LineCheckStation=32023,
        /// <summary>
        /// 空托盘入库
        /// </summary>
        EmptyBoxingInbound=32022,
        /// <summary>
        /// 正极托盘号
        /// </summary>
        YangDownFloor = 999997,
        /// <summary>
        /// 负极托盘号
        /// </summary>
        YinDownFloor = 999998,
 
        /// <summary>
        /// 结构件下料口
        /// </summary>
        StructureDownFloor=999999
 
    }
}