using MiniExcelLibs.Attributes;
|
|
namespace CMS.Plugin.HIAWms.Application.Contracts.Dtos.WmsStores
|
{
|
/// <summary>
|
/// WmsStores导出模型
|
/// </summary>
|
public class WmsStoresExportModel
|
{
|
/// <summary>
|
/// WmsStore导出模型
|
/// </summary>
|
public class WorkSectionExportModel
|
{
|
/// <summary>
|
/// 获取或设置仓库代码
|
/// </summary>
|
/// <example>WH-001</example>
|
[ExcelColumn(Name = "仓库代码", Width = 20)]
|
public string StoreCode { get; set; }
|
|
/// <summary>
|
/// 获取或设置仓库名称
|
/// </summary>
|
/// <example>上海中心仓</example>
|
[ExcelColumn(Name = "仓库名称", Width = 25)]
|
public string StoreName { 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; }
|
}
|
}
|
}
|