wangxinhui
12 小时以前 67348f250a1b7970059698002949a5e0a5f3c52f
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Tasks.ConveyorLineJob
{
    /// <summary>
    /// 原料写入读取
    /// </summary>
    public enum WR_CLineYLDB
    {
        /// <summary>
        /// 任务号
        /// </summary>
        WR_Task,
        /// <summary>
        /// 目标站台
        /// </summary>
        WR_ToHode,
        /// <summary>
        /// 重量
        /// </summary>
        WR_Weight,
        /// <summary>
        /// 幅宽
        /// </summary>
        WR_Width,
        /// <summary>
        /// 直径/高度
        /// </summary>
        WR_Height,
        /// <summary>
        /// 申请
        /// </summary>
        WR_Request,
        /// <summary>
        /// 申请反馈 86成功
        /// </summary>
        WR_Reresult,
        /// <summary>
        /// 条码
        /// </summary>
        WR_TMID
    }
}