using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WMS.Info.Models.WCSDeviceMonitor
{
[Serializable]
public class WarehouseLocationInfo
{
///
/// 总货位
///
public int TotalSpaces { get; set; }
///
/// 空货位
///
public int EmptySpaces { get; set; }
///
/// 堆垛机数
///
public int TotalSrms { get; set; }
///
/// 堆垛机故障数
///
public int TotalSrmFaults { get; set; }
///
/// AGV总数
///
public int TotalAGVs { get; set; }
///
/// 任务总数
///
public int TotalTasks { get; set; }
}
}