using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WMS.Common.Algorithm
{
///
/// 入库算法传入JSON格式数据模型
///
public class FeedAlgorEntity
{
///
/// 是否锁定货位
///
private bool _lockLocation = true;
///
/// 是否锁定货位
///
public bool lockLocation
{
get
{
return _lockLocation;
}
set
{
_lockLocation = value;
}
}
///
/// 指定仓库编号 *
///
public string stockCode { get; set; }
///
/// 指定库区编号 *
///
public string stockAreaCode { get; set; }
///
/// 指定逻辑分区 多个则以逗号分隔
///
public string logicCode { get; set; }
///
/// 托盘码 *
///
public string trayCode { get; set; }
///
/// 物料编码 *
///
public string itemCode { get; set; }
///
/// 补料策略
///
public FeedGoodType FeedType { get; set; }
///
/// 设备信息 *
///
public List lstDevice { get; set; }
///
/// 需要剔除的托盘集合
///
public List lstFeedEliminate { get; set; }
///
/// 库区编码 *
///
public string stockArea { get; set; }
///
/// 需要托盘的数量
///
public int trayQty { get; set; }
///
/// 需要补料的物料 *
///
public List lstItem { get; set; }
}
}