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