wangxinhui
2026-03-26 5c272c606bdf2da3577dbaa5f48d0ee163f1e7d2
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Tasks.ConveyorLineJob
{
    public enum W_ConveyorLineCPDB
    {
        /// <summary>
        /// 命令
        /// </summary>
        W_Command,
        /// <summary>
        /// 目标地址
        /// </summary>
        W_TargetAddress,
        /// <summary>
        /// 任务号
        /// </summary>
        W_TaskNo,
        /// <summary>
        /// 预留
        /// </summary>
        W_Reserve,
        /// <summary>
        /// 心跳
        /// </summary>
        W_Heart
    }
}