Files
WMS-Api/src/WMS.Web.Core/Dto/OutStockTask/ExportInfoResponse.cs
2024-04-23 11:17:05 +08:00

65 lines
1.7 KiB
C#

using Npoi.Mapper.Attributes;
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.OutStockTask
{
/// <summary>
/// 出库单导出详情
/// </summary>
public class ExportInfoResponse
{
/// <summary>
/// 来源单号
/// </summary>
[Column("来源单号")]
public string SourceBillNo { get; set; }
/// <summary>
/// 销售订单号
///</summary>
[Column("销售订单号")]
public string SaleBillNo { get; set; }
/// <summary>
/// 出库时间
/// </summary>
[Column("销售出库时间")]
public string CreateTime { get; set; }
/// <summary>
/// 客户
///</summary>
[Column("客户")]
public string ReceiptCustomer { get; set; }
/// <summary>
/// 箱号
/// </summary>
[Column("箱号")]
public string BoxBillNo { get; set; }
/// <summary>
/// 物料规格型号
/// </summary>
[Column("规格型号")]
public string Specifications { get; set; }
/// <summary>
/// 物料名称
/// </summary>
[Column("物料名称")]
public string MaterialName { get; set; }
/// <summary>
/// 物料编码
/// </summary>
[Column("物料编码")]
public string MaterialNumber { get; set; }
/// <summary>
/// 物料69条码
/// </summary>
[Column("EAN 69码")]
public string BarCode { get; set; }
/// <summary>
/// 序列号
/// </summary>
[Column("序列号")]
public string SerialNumbers { get; set; }
}
}