namespace HH.WCS.SJML.Entitys
{
///
/// 出库算法返回实体
///
public class OutAssignResultEntity
{
///
/// 是否成功
///
public bool Success { get; set; }
///
/// 错误提示
///
public string Msg { get; set; }
///
/// 程序异常5 系统错误提示6 库存不足7 位置不足8
///
public string errCode { get; set; }
///
/// 托盘码
///
public string trayCode { get; set; }
///
/// 货位码
///
public string locationCode { get; set; }
///
/// 库区码
///
public string areaCode { get; set; }
///
/// 库区结构
///
public string areaType { get; set; }
///
/// 货位中指数
///
public string index { get; set; }
///
/// 是否控制数量
///
public string isControlQty { get; set; }
///
/// 是否控制库存
///
public string isControlInv { get; set; }
}
}