namespace DS.WMS.Core.BaseInfo.Dtos;
public class StoreAreaPositionInput
{
public string Id {get;set;}
///
/// 库位
///
public string AreaCode { get; set; }
///
/// 行数
///
public int RowNum { get; set; }
///
/// 列数
///
public int ColumnNum { get; set; }
///
/// 行长
///
public int RowLength { get; set; }
///
/// 列长
///
public int ColumnLength { get; set; }
public string Note { get; set; }
}