zxx
2025-05-27 cdf20a4525a2ff9f6fe2c1e9b69fa2854c5848fd
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
60
61
62
63
64
65
66
67
using HH.WCS.JuShi.models;
using SqlSugar;
using System;
using System.Collections.Generic;
 
namespace HH.WCS.JuShi
{
 
    [SugarTable("PlcDeviceTable")]
    public class PlcDeviceTable : BaseModel
    {    
        ///// <summary>
        // /// ÏßÌå±àºÅ
        // /// </summary>
        //public int DeviceNo { get; set; }
        ///// <summary>
        ///// É豸»õλ±àÂë
        ///// </summary>
        //public string Location { get; set; }
        ///// <summary>
        ///// ¹¤×÷ģʽ ´ý»ú=1 ÔËÐÐÖÐ=2  ÍÑ»ú=0
        ///// </summary>
        //public int workMode { get; set; }
        ///// <summary>
        ///// ¹âµçÐźŠ       Óлõ =1 ÎÞ»õ=0
        ///// </summary>
        //public int lightAction { get; set; }
        ///// <summary>
        ///// ¹ÊÕϱ¨¾¯
        ///// </summary>
        //public int errorAlarm { get; set; }
        ///// <summary>
        ///// É豸״̬    ÎÞ״̬=0 ÔËÐÐ״̬=1 ÊÖ¶¯×´Ì¬=2 ÓÐÁϵȴý=3 Òì³£±¨¾¯=4
        ///// </summary>
        //public int deviceState { get; set; }
        //public string TaskNo { get; set; }
        ///// <summary>
        ///// Ä¿±êµØÖ·
        ///// </summary>
        //public int targetAddr { get; set; }
        ///// <summary>
        ///// ÖØÁ¿
        ///// </summary>
        //public float weight { get; set; }
        ///// <summary>
        ///// ÍÐÅÌÂë
        ///// </summary>
        //public string trayCode { get; set; }
        /// <summary>
        /// 3´çÊäËÍÏßÇëÇóÈ¡¿ò
        /// </summary>
        public bool requestTake1 { get; set; }
        /// <summary>
        /// 3´çÊäËÍÏßÔÊÐí·Å¿ò
        /// </summary>
        public bool requestPut1 { get; set; }
        /// <summary>
        /// 6´çÊäËÍÏßÇëÇóÈ¡¿ò
        /// </summary>
        public bool requestTake2 { get; set; }
        /// <summary>
        /// 6´çÊäËÍÏßÔÊÐí·Å¿ò
        /// </summary>
        public bool requestPut2 { get; set; }
        public Dictionary<int, int> RGVAllowUnload { get; internal set; }
    }
}