using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Application;
///
/// 查询空库位的输入参数
///
public class FindEmptyPlaceInput
{
///
/// 查询库区编号列表
///
public List AreaList { get; set; }
///
/// 库位号
///
public string PalceNo { get; set; }
}