using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWareDataCore.BASE.Entity { public class PlaceStatusNumEntity { /// /// 空库位 /// public int EmptyPlace { get; set; } /// /// 有货库位 /// public int FullPlace { get; set; } /// /// 锁定库位 /// public int LockPlace { get; set; } } }