using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.SingleLight
{
public class SingleLightControlRequest : RequestBase
{
///
/// 巷道灯颜色 如果不传 默认为-1 不发送对应指令
///
public int WarningLightColor { get; set; } = -1;
public int WarningLightMode { get; set; } = -1;
///
/// 巷道灯蜂鸣器模式 如果不传 默认为-1 不发送对应指令
///
public int WarningBuzzerMode { get; set; } = -1;
///
/// 库位灯控制
///
public List StoreList { get; set; }
}
public class StoreListItem
{
#region
///
/// 库位编码
///
public string StoreCode { get; set; }
///
/// 货架Id
///
public int ShelfId { get; set; } = 0;
///
/// 板子Id
///
public int BoardId { get; set; } = 0;
///
/// 亮灯模式
///
public int LightMode { get; set; } = 0;
///
/// 亮灯颜色
///
public int LightColor { get; set; } = 0;
#endregion
}
}