using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace Tiger.Model.Sharetronic.Shelf { /// /// 盘点操作 5 盘 /// public class GetChuteInfoEntity { /// /// 货架槽位集合 /// public List shelfLedAddressList { get; set; } = new List(); /// /// 接口获取物料状态信息等待时间(秒) /// 当数据不为 0 时,接口返回信息包含对应槽位状 态。返回 ResultValue 为PostChuteConfigModel的JSON字符串 /// public int waitSeconds { get; set; } = 10; } /// /// 槽位地址状态 /// public class LedAddressInfo { /// /// 槽位地址 /// public int ledAddress { get; set; } /// /// 料盘是否存在,true-存在料盘 false-不存在料盘 /// public bool isOccupy { get; set; } } }