using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WMS.Info
{
///
/// 离线区域
///
public class WareaOffInfo
{
///
/// 仓库编号
///
public string WarehouseNo { get; set; }
///
/// 仓库名称
///
public string WarehouseName { get; set; }
///
/// 仓库类型
///
public int WarehouseTypeNum { get; set; }
///
/// 区域编号
///
public string WareaNo { get; set; }
///
/// 区域名称
///
public string WareaName { get; set; }
}
}