namespace Kean.Application.Query.ViewModels
{
///
/// 货位信息视图
///
public sealed class Cell
{
///
/// 标识
///
public int Id { get; set; }
///
/// 库区
///
public int Area { get; set; }
///
/// 库房
///
public int Warehouse { get; set; }
///
/// 特征组
///
public string Group { get; set; }
///
/// 编码
///
public string Code { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 类型
///
public string Type { get; set; }
///
/// 是否可入
///
public bool? AllowIn { get; set; }
///
/// 是否可出
///
public bool? AllowOut { get; set; }
///
/// 排
///
public int? Row { get; set; }
///
/// 列
///
public int? Column { get; set; }
///
/// 层
///
public int? Tier { get; set; }
///
/// 存储状态
///
public string Store { get; set; }
///
/// 运行状态
///
public string Task { get; set; }
///
/// 可视化信息
///
public string Visual { get; set; }
///
/// 货龄状态
///
public string GoodsAgeStatus
{
get; set;
}
///
/// 巷道
///
public int? Laneway
{
get; set;
}
///
/// tag
///
public string CellTag
{
get; set;
}
}
}