You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
608 B
C#

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