1
pulg
2025-05-14 5a640911f7e7ef3a003775993f077e1a0e9ac130
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 SqlSugar;
 
namespace HH.WCS.ZCQTJ.Entitys.MES中间表
{
    [SugarTable("AGV_STATUS_BAST")]
    public class AGV_STATUS_BAST_VMI2
    {
        public int Id { get; set; }
        /// <summary>
        /// 设备运行状态
        /// </summary>
        // public bool AutoMode { get; set; }
        /// <summary>
        /// 设备故障
        /// </summary>
        //public bool FatalFault { get; set; }
 
        //  public bool TotalReset { get; set; }
        /// <summary>
        /// 是否启用
        /// </summary>
        //  public bool AgvBypass { get; set; }
        /// <summary>
        /// 入库口是否空满
        /// </summary>
        //public bool EntryPos1Empty { get; set; }
        ///// <summary>
        ///// 入库点是否有货
        ///// </summary>
        //public bool EntryTrackBusy { get; set; }
 
        //public bool NumberPalletsEntry { get; set; }
        ///// <summary>
        ///// 设备是否请求放货
        ///// </summary>
        //public bool EntrySupplyPallet { get; set; }
 
        //  public bool ExitPos8Full { get; set; }
        /// <summary>
        /// 入库口空满
        /// </summary>
        //public bool ExitTrackBusy { get; set; }
        //public bool NumberPalletsExit { get; set; }
        //public bool RemovePalletExit { get; set; }
        public int RFIDCheck { get; set; }
        //public bool ExitStackCounter { get; set; }
        //  public DateTime? TimeStamp { get; set; }
        //  public string RfidPalletNumber { get; set; }
        // public bool CarrAtPos5 { get; set; }
    }
}