using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Admin.NET.Application
|
{
|
public class LocationStatisticsOutput
|
{
|
/// <summary>
|
/// 库位总数
|
/// </summary>
|
public int LocationCount { get; set; }
|
|
/// <summary>
|
/// 空库位数
|
/// </summary>
|
public int EmptyLocationCount { get; set; }
|
|
/// <summary>
|
/// 已使用数
|
/// </summary>
|
public int UsedLocationCount { get { return LocationCount - EmptyLocationCount; } }
|
}
|
}
|