using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace Tiger.Model.SeaStone.Shelf
|
{
|
/// <summary>
|
/// 货架储位灯状态
|
/// </summary>
|
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;
|
}
|
|
/// <summary>
|
/// 储位号
|
/// </summary>
|
public int slotNo { get; set; }
|
/// <summary>
|
/// 方向(0正面|1反面)
|
/// </summary>
|
public int side { get; set; }
|
/// <summary>
|
/// 灯色
|
/// </summary>
|
public string lightColor { get; set; }
|
/// <summary>
|
/// 是否闪烁
|
/// </summary>
|
public bool isBlink { get; set; }
|
}
|
}
|