using CMS.Plugin.HIAWms.Domain.Shared.Enums;
|
using MiniExcelLibs.Attributes;
|
|
namespace CMS.Plugin.HIAWms.Application.Contracts.Dtos.WmsPlaces
|
{
|
/// <summary>
|
/// WmsPlaces导出模型
|
/// </summary>
|
public class WmsPlacesExportModel
|
{
|
/// <summary>
|
/// WmsPlace导出模型
|
/// </summary>
|
public class WorkSectionExportModel
|
{
|
/// <summary>
|
/// 获取或设置货位编号
|
/// </summary>
|
/// <example>PL-001-01-01</example>
|
[ExcelColumn(Name = "货位编号", Width = 20)]
|
public string PlaceNo { get; set; }
|
|
/// <summary>
|
/// 获取或设置货位类型
|
/// </summary>
|
/// <example>Normal</example>
|
[ExcelColumn(Name = "货位类型", Width = 15)]
|
public PlaceTypeEnum StorageTypeNo { get; set; }
|
|
/// <summary>
|
/// 获取或设置货位状态
|
/// </summary>
|
/// <example>Available</example>
|
[ExcelColumn(Name = "货位状态", Width = 15)]
|
public PlaceStatusEnum PlaceStatus { get; set; }
|
|
/// <summary>
|
/// 获取或设置所在库区编号
|
/// </summary>
|
/// <example>AREA-001</example>
|
[ExcelColumn(Name = "所属库区", Width = 20)]
|
public string AreaCode { get; set; }
|
|
/// <summary>
|
/// 获取或设置巷道编号
|
/// </summary>
|
/// <example>1</example>
|
[ExcelColumn(Name = "巷道", Width = 10)]
|
public int Aisle { get; set; }
|
|
/// <summary>
|
/// 获取或设置排号
|
/// </summary>
|
/// <example>2</example>
|
[ExcelColumn(Name = "排", Width = 10)]
|
public int RowNo { get; set; }
|
|
/// <summary>
|
/// 获取或设置列号
|
/// </summary>
|
/// <example>3</example>
|
[ExcelColumn(Name = "列", Width = 10)]
|
public int ColumnNo { get; set; }
|
|
/// <summary>
|
/// 获取或设置层号
|
/// </summary>
|
/// <example>1</example>
|
[ExcelColumn(Name = "层", Width = 10)]
|
public int LayerNo { get; set; }
|
|
/// <summary>
|
/// 获取或设置锁定状态
|
/// </summary>
|
/// <example>No</example>
|
[ExcelColumn(Name = "是否锁定", Width = 12)]
|
public YesNoEnum Islock { get; set; }
|
|
/// <summary>
|
/// 获取或设置空托状态
|
/// </summary>
|
/// <example>Yes</example>
|
[ExcelColumn(Name = "是否空托", Width = 12)]
|
public YesNoEnum EmptyContainer { get; set; }
|
|
/// <summary>
|
/// 获取或设置预留扩展字段1
|
/// </summary>
|
[ExcelColumn(Name = "扩展字段1", Width = 20)]
|
public string RedundantField1 { get; set; }
|
|
/// <summary>
|
/// 获取或设置预留扩展字段2
|
/// </summary>
|
[ExcelColumn(Name = "扩展字段2", Width = 20)]
|
public string RedundantField2 { get; set; }
|
|
/// <summary>
|
/// 获取或设置预留扩展字段3
|
/// </summary>
|
[ExcelColumn(Name = "扩展字段3", Width = 20)]
|
public string RedundantField3 { get; set; }
|
|
/// <summary>
|
/// 备注
|
/// </summary>
|
[ExcelColumn(Name = "备注", Width = 25)]
|
public virtual string Remark { get; set; }
|
}
|
}
|
}
|