using System;
using System.Collections.Generic;
namespace WMS.BZModels.Dto.FJ.WCSPalletizingDtos
{
public partial class WCSPalletizinglayerDto
{
///
/// Id
///
public string Id { get; set; }
///
/// 码垛主表Id
///
public string PalletizingId { get; set; }
///
/// 是否空置
///
public bool IsEmpty { get; set; }
///
/// 层号
///
public int LayerNo { get; set; }
///
/// 行数
///
public int RowCountQty { get; set; }
///
/// 当前所有的物料号
///
public string MatCodeList { get; set; }
///
/// 是否结束
///
public bool Finish { get; set; }
///
/// 仓库编号
///
public string WarehouseCode { get; set; }
}
}