using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace Tiger.Model.Sharetronic.Shelf { /// /// 多灯灭 包含结束 4 捡料 5 盘点 /// public class DownMultiEntity { /// /// 货架槽位集合 /// public List shelfLedAddressList { get; set; } = new List(); /// /// 参数对象 /// public Parameters parameters { get; set; } /// /// 指令类型,4 捡料 5 盘点 /// public int operateType { get; set; } /// /// 颜色,0, "灭灯",1:"红色",2:"绿色",3:" 蓝色",4:"黄色",5:"紫色",6:"靛蓝",7:"白色" /// public int color { get; set; } /// /// 是否覆盖亮灯,0-不支持覆盖式亮灯,1- 支持覆盖式亮灯 /// public int isCover { get; set; } } }