using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Warehouse.WebApi.Model { public class SearchStockLocationModel { /// /// 仓库Id /// public Int32 StockId { get; set; } } public class SearchConditionModel { /// /// 库位id /// public Int32 LocationId { get; set; } } }