using System;
using System.Collections.Generic;
using System.Text;
namespace Tiger.Model.SeaStone.Shelf
{
///
/// 货架储位灯状态
///
public class SlotLightStatus
{
public SlotLightStatus()
{
}
public SlotLightStatus(int slotNo, int side, string lightColor, bool blinkColor)
{
this.slotNo = slotNo;
this.side = side;
this.lightColor = lightColor;
this.isBlink = blinkColor;
}
///
/// 储位号
///
public int slotNo { get; set; }
///
/// 方向(0正面|1反面)
///
public int side { get; set; }
///
/// 灯色
///
public string lightColor { get; set; }
///
/// 是否闪烁
///
public bool isBlink { get; set; }
}
}