using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_DTO.WMS
{
///
/// 库位信息查询
///
public class WMSGetLocationInfo
{
///
/// 库区编号
///
public string AreaCode { get; set; }
///
/// 1:成品库
/// 2:面料库
/// 3:输送线缓存
/// 4:裁剪库
/// 5:1楼出入库站台
///
public int WarehouseId { get; set; }
}
}