using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace Tiger.Model.Sharetronic.Shelf { /// /// 单灯亮 /// public class LightSingleEntity { /// /// 货架编号,Y1 是货架,F 是货架前侧,R 是后侧 /// public string shelfNo { get; set; } /// /// 灯位地址 /// public int ledAddr { get; set; } /// /// 颜色,0, "灭灯",1:"红色",2:"绿色",3:" 蓝色",4:"黄色",5:"紫色",6:"靛蓝",7:"白色" /// public int color { get; set; } /// /// 是否覆盖亮灯,0-不支持覆盖式亮灯,1- 支持覆盖式亮灯 /// public int isCover { get; set; } /// /// 货架类型,sensor_shelf 感应式货架,led_shelf LED 灯架 /// public string shelfType { get; set; } } }