using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_DTO.WMS
{
public class UpLocationStatusDTO
{
///
/// 仓库id
///
public int WarehouseId { get; set; }
///
/// 禁用状态(0 启用,3 禁用)
///
public int EnableStatus { get; set; }
///
/// 货位编号列表
///
public string[] LocationNubList { get; set; }
}
}