using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace iWare.Wms.Application
{
public class InventoryByLocationInput
{
///
/// 巷道
///
public int? Lane { get; set; }
///
/// 排
///
public int? Row { get; set; }
///
/// 库位编号
///
public string Code { get; set; }
///
/// 容器编号
///
public string ContainerCode { get; set; }
///
/// 库位状态
///
public int? Status { get; set; }
///
/// 锁定状态
///
public int? IsLocked { get; set; }
}
}