using HH.WCS.JuShi.models; using SqlSugar; using System; namespace HH.WCS.JuShi { [SugarTable("PlcDeviceTable")] public class PlcDeviceTable : BaseModel { /// /// ÏßÌå±àºÅ /// public int DeviceNo { get; set; } /// /// É豸»õλ±àÂë /// public string Location { get; set; } /// /// ¹¤×÷ģʽ ´ý»ú=1 ÔËÐÐÖÐ=2 ÍÑ»ú=0 /// public int workMode { get; set; } /// /// ¹âµçÐźŠÓлõ =1 ÎÞ»õ=0 /// public int lightAction { get; set; } /// /// ¹ÊÕϱ¨¾¯ /// public int errorAlarm { get; set; } /// /// É豸״̬ ÎÞ״̬=0 ÔËÐÐ״̬=1 ÊÖ¶¯×´Ì¬=2 ÓÐÁϵȴý=3 Òì³£±¨¾¯=4 /// public int deviceState { get; set; } public string TaskNo { get; set; } /// /// Ä¿±êµØÖ· /// public int targetAddr { get; set; } /// /// ÖØÁ¿ /// public float weight { get; set; } /// /// ÍÐÅÌÂë /// public string trayCode { get; set; } /// /// ÊäËÍÏßÇëÇóÈ¡¿ò /// public bool requestTake { get; set; } /// /// ÊäËÍÏßÔÊÐí·Å¿ò /// public bool requestPut { get; set; } } }