using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace Tiger.Model.Sharetronic.Shelf { /// /// 控制灯塔亮灭 /// public class OperateTowerLightEntity { /// /// 货架编号,Y1 是货架,F 是货架前侧,R 是后侧 /// public string shelfNo { get; set; } /// /// 开关,1-开 0-关 /// public int operEnum { get; set; } /// /// 货架类型,sensor_shelf 感应式货架,led_shelf LED 灯架 /// public string shelfType { get; set; } /// /// 亮灯颜色,1-红灯(加蜂鸣器),2-黄灯,3-绿灯 /// public int color { get; set; } } /// /// 灯塔亮灯颜色 /// public enum TowerColor { [Description("灭灯")] NoColor, [Description("红色")] Red, [Description("黄色")] Yellow, [Description("绿色")] Green, } }