导出列表
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using Npoi.Mapper.Attributes;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
@@ -12,90 +13,112 @@ namespace WMS.Web.Core.Dto.OutStockTask
|
||||
/// <summary>
|
||||
/// 单据Id
|
||||
/// </summary>
|
||||
[Ignore]
|
||||
public int Id { get; set; }
|
||||
/// <summary>
|
||||
/// 明细Id
|
||||
/// </summary>
|
||||
[Ignore]
|
||||
public int DetailId { get; set; }
|
||||
/// <summary>
|
||||
/// 单据编号
|
||||
/// 出库任务单号
|
||||
/// </summary>
|
||||
[Column("出库任务单号")]
|
||||
public string BillNo { get; set; }
|
||||
/// <summary>
|
||||
/// 单据状态
|
||||
/// 出库状态
|
||||
/// </summary>
|
||||
[Column("出库状态")]
|
||||
public string Status { get; set; }
|
||||
/// <summary>
|
||||
/// 单据类型
|
||||
/// </summary>
|
||||
[Column("出库类型")]
|
||||
public string Type { get; set; }
|
||||
/// <summary>
|
||||
/// 操作人(出库人)
|
||||
/// </summary>
|
||||
[Column("出库人")]
|
||||
public string Operator { get; set; }
|
||||
/// <summary>
|
||||
/// 操作时间(出库时间)
|
||||
/// </summary>
|
||||
[Column("出库时间")]
|
||||
public string OperateTime { get; set; }
|
||||
/// <summary>
|
||||
/// 来源单号
|
||||
///</summary>
|
||||
[Column("来源单号")]
|
||||
public string SourceBillNo { get; set; }
|
||||
/// <summary>
|
||||
/// 销售订单号
|
||||
///</summary>
|
||||
[Column("销售订单号")]
|
||||
public string SaleBillNo { get; set; }
|
||||
/// <summary>
|
||||
/// 发货组织
|
||||
///</summary>
|
||||
[Column("发货组织")]
|
||||
public string DeliveryOrg { get; set; }
|
||||
/// <summary>
|
||||
/// 收货客户
|
||||
///</summary>
|
||||
[Column("收货客户")]
|
||||
public string ReceiptCustomer { get; set; }
|
||||
/// <summary>
|
||||
/// 物料名称
|
||||
/// </summary>
|
||||
[Column("物料名称")]
|
||||
public string MaterialName { get; set; }
|
||||
/// <summary>
|
||||
/// 物料编码
|
||||
/// </summary>
|
||||
[Column("物料编码")]
|
||||
public string MaterialNumber { get; set; }
|
||||
/// <summary>
|
||||
/// 物料规格型号
|
||||
/// </summary>
|
||||
[Column("规格型号")]
|
||||
public string Specifications { get; set; }
|
||||
/// <summary>
|
||||
/// 仓库ID
|
||||
/// 仓库
|
||||
///</summary>
|
||||
[Column("发货仓库")]
|
||||
public string Stock { get; set; }
|
||||
/// <summary>
|
||||
/// 应出库数量
|
||||
///</summary>
|
||||
[Column("应出库数量")]
|
||||
public decimal AccruedQty { get; set; }
|
||||
/// <summary>
|
||||
/// 已出库数量
|
||||
///</summary>
|
||||
[Column("已出库数量")]
|
||||
public decimal RealityQty { get; set; }
|
||||
/// <summary>
|
||||
/// 订单明细备注
|
||||
///</summary>
|
||||
[Column("订单明细备注")]
|
||||
public string Remark { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间(erp那边的创建时间)
|
||||
///</summary>
|
||||
[Column("创建时间")]
|
||||
public string CreateTime { get; set; }
|
||||
/// <summary>
|
||||
/// 单位
|
||||
/// </summary>
|
||||
[Column("单位")]
|
||||
public string Unit { get; set; }
|
||||
/// <summary>
|
||||
/// 出库开始时间
|
||||
///</summary>
|
||||
[Column("出库开始时间")]
|
||||
public string OutStockBeginTime { get; set; }
|
||||
/// <summary>
|
||||
/// 出库结束时间
|
||||
///</summary>
|
||||
[Column("出库结束时间")]
|
||||
public string OutStockEndTime { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user