using MiniExcelLibs.Attributes;
namespace CMS.Plugin.HIAWms.Application.Contracts.Dtos.WmsStores
{
///
/// WmsStores导出模型
///
public class WmsStoresExportModel
{
///
/// WmsStore导出模型
///
public class WorkSectionExportModel
{
///
/// 获取或设置仓库代码
///
/// WH-001
[ExcelColumn(Name = "仓库代码", Width = 20)]
public string StoreCode { get; set; }
///
/// 获取或设置仓库名称
///
/// 上海中心仓
[ExcelColumn(Name = "仓库名称", Width = 25)]
public string StoreName { get; set; }
///
/// 获取或设置预留扩展字段1
///
[ExcelColumn(Name = "扩展字段1", Width = 20)]
public string RedundantField1 { get; set; }
///
/// 获取或设置预留扩展字段2
///
[ExcelColumn(Name = "扩展字段2", Width = 20)]
public string RedundantField2 { get; set; }
///
/// 获取或设置预留扩展字段3
///
[ExcelColumn(Name = "扩展字段3", Width = 20)]
public string RedundantField3 { get; set; }
///
/// 备注
///
[ExcelColumn(Name = "备注", Width = 25)]
public virtual string Remark { get; set; }
}
}
}