using System; using System.Collections.Generic; using System.Text; namespace Tiger.Model.SeaStone.Shelf { /// /// 储位上报数据结构 /// public class SlotChanged { public SlotChanged() { } public SlotChanged(int LedId, int CellStatus, string RackId, DateTime Timestamp, string SessionId) { this.LedId = LedId; this.CellStatus = CellStatus; this.RackId = RackId; this.Timestamp = Timestamp; this.SessionId = SessionId; } /// /// 储位灯序号 /// public int LedId { get; set; } /// /// 储位状态:0-空,1-非空 /// public int CellStatus { get; set; } /// /// 料架编码 /// public string RackId { get; set; } /// /// 时间戳 /// public DateTime Timestamp { get; set; } /// /// 会话ID /// public string SessionId { get; set; } /// /// UserId /// public string UserId { get; set; } /// /// SendTimes /// public string SendTimes { get; set; } } }