using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using Tiger.Model.Minsun; namespace Tiger.Model { public class ScanShelfInfo { public string WarehouseCode { get; set; } public string RegionCode { get; set; } public string ShelfCode { get; set; } public string LocationCode { get; set; } public string RackCode => ShelfCode; public bool IsSmartRack { get; set; } public decimal Capacity { get; set; } public int LotCount { get; set; } public decimal MaxSize { get; set; } public int ShelfType { get; set; } public bool IsScanShelf { get; set; } public WMS_SHELF Shelf { get; set; } public WMS_LOCATION Location { get; set; } } }