namespace Admin.NET.Application;
///
/// 库位信息输出参数
///
public class WmsPlaceOutput
{
///
/// 绑定容器数
///
[SugarColumn(ColumnName = "BindContainerCount", ColumnDescription = "绑定容器数")]
public int? BindContainerCount { get; set; }
///
/// 主键Id
///
public long Id { get; set; }
///
/// 库位编码
///
public string PlaceCode { get; set; }
///
/// 库位名称
///
public string PlaceName { get; set; }
///
/// 库位别名
///
public string? PlaceAlias { get; set; }
///
/// 库位类型
///
public int PlaceType { get; set; }
///
/// 库位类型名称
///
public string PlaceTypeName { get; set; }
///
/// 库存单位
///
public string? StockUnit { get; set; }
///
/// 库位属性
///
public int PlaceStatus { get; set; }
///
/// 是否激活与任务调度
///
public bool? IsActivateWCS { get; set; }
///
/// 库存环境
///
public string? Environment { get; set; }
///
/// 库区编号
///
public string AreaCode { get; set; }
///
/// 所在库区
///
public long AreaId { get; set; }
///
/// 库区名称
///
public string AreaName { get; set; }
///
/// 检验码
///
public string? VerificationCode { get; set; }
///
/// 排
///
public int RowNo { get; set; }
///
/// 列
///
public int ColumnNo { get; set; }
///
/// 层
///
public int LayerNo { get; set; }
///
/// 巷道
///
public int LaneNo { get; set; }
///
/// 库位X坐标
///
public string? Xzb { get; set; }
///
/// 库位Y坐标
///
public string? Yzb { get; set; }
///
/// 库位Z坐标
///
public string? Zzb { get; set; }
///
/// 库位长度
///
public decimal Length { get; set; }
///
/// 库位宽度
///
public decimal Width { get; set; }
///
/// 库位高度
///
public decimal Height { get; set; }
///
/// 最大承重
///
public decimal MaxWeight { get; set; }
///
/// 上架顺序
///
public int? InSequence { get; set; }
///
/// 下架顺序
///
public int? OutSequence { get; set; }
///
/// 是否虚拟
///
public bool? IsVirtually { get; set; }
///
/// 是否禁用
///
public bool IsDisabled { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 修改时间
///
public DateTime? UpdateTime { get; set; }
///
/// 创建人Id
///
public long? CreateUserId { get; set; }
///
/// 创建人
///
public string? CreateUserName { get; set; }
///
/// 修改人Id
///
public long? UpdateUserId { get; set; }
///
/// 修改人
///
public string? UpdateUserName { get; set; }
///
/// 软删除
///
public bool IsDelete { get; set; }
}