旧版报表、仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
451 B

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