|
@ -3,6 +3,7 @@ using System.ComponentModel; |
|
|
using System.ComponentModel.DataAnnotations; |
|
|
using System.ComponentModel.DataAnnotations; |
|
|
using Magicodes.ExporterAndImporter.Core; |
|
|
using Magicodes.ExporterAndImporter.Core; |
|
|
using Volo.Abp.Application.Dtos; |
|
|
using Volo.Abp.Application.Dtos; |
|
|
|
|
|
using Win.Sfs.SettleAccount.Entities.BQ.Syncs; |
|
|
|
|
|
|
|
|
namespace Win.Sfs.SettleAccount.Entities.BQ.Dtos; |
|
|
namespace Win.Sfs.SettleAccount.Entities.BQ.Dtos; |
|
|
|
|
|
|
|
@ -11,113 +12,184 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Dtos; |
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
public class PUB_SE_DETAIL_DTO : EntityDto<Guid> |
|
|
public class PUB_SE_DETAIL_DTO : EntityDto<Guid> |
|
|
{ |
|
|
{ |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 期间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int Version { set; get; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 发货时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public DateTime ShippingDate { set; get; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 发运单号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string WmsBillNum { set; get; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 客户零件号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string LU { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 厂内零件号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string FactoryPartCode { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 生产号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string PN { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 组合键值(PN+LU)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string KeyCode { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 数量
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public decimal Qty { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// UID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "UID")] |
|
|
|
|
|
[DisplayName("UID")] |
|
|
|
|
|
public long UID { get; set; } |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 发货单号
|
|
|
/// 发货单号
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[Display(Name = "发货单号")] |
|
|
[Display(Name = "发货单号")] |
|
|
public string WmsBillNum { get; set; } |
|
|
public string BillNum { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 发货时间
|
|
|
/// 发货时间
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("发货时间")] |
|
|
[Display(Name = "发货时间")] |
|
|
public DateTime BillTime { get; set; } |
|
|
public DateTime BillTime { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 订单时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "订单时间")] |
|
|
|
|
|
public DateTime AssembleData { get; set; } |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 零件号
|
|
|
/// 零件号
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("零件号")] |
|
|
[Display(Name = "零件号")] |
|
|
public string PartCode { get; set; } |
|
|
public string PartCode { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 批次
|
|
|
/// 批次
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("批次")] |
|
|
[Display(Name = "批次")] |
|
|
public string Batch { get; set; } |
|
|
public string Batch { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 客户零件号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "客户零件号")] |
|
|
|
|
|
public string CustPartCode { get; set; } |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 发货人
|
|
|
/// 发货人
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("发货人")] |
|
|
[Display(Name = "发货人")] |
|
|
public string Oper { get; set; } |
|
|
public string Oper { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// DN单据号
|
|
|
/// DN单据号
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("DN单据号")] |
|
|
[Display(Name = "DN单据号")] |
|
|
public string DnBillNum { get; set; } |
|
|
public string DnBillNum { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// DN单据时间
|
|
|
/// DN单据时间
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("DN单据时间")] |
|
|
[Display(Name = "DN单据时间")] |
|
|
public DateTime DnBillTime { get; set; } |
|
|
public DateTime DnBillTime { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// DN单添加人
|
|
|
/// DN单添加人
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("DN单添加人")] |
|
|
[Display(Name = "DN单添加人")] |
|
|
public string DnOper { get; set; } |
|
|
public string DnOper { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 交付索引
|
|
|
/// 交付索引
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("交付索引")] |
|
|
[Display(Name = "交付索引")] |
|
|
public string DeliveryIndex { get; set; } |
|
|
public string DeliveryIndex { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 客户
|
|
|
/// 客户
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("客户")] |
|
|
[Display(Name = "客户")] |
|
|
public string CustId { get; set; } |
|
|
public string CustId { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 发货仓库
|
|
|
/// 发货仓库
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("发货仓库")] |
|
|
[Display(Name = "发货仓库")] |
|
|
public string DeliveryHose { get; set; } |
|
|
public string DeliveryHose { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 来源库位
|
|
|
/// 来源库位
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("来源库位")] |
|
|
[Display(Name = "来源库位")] |
|
|
public string FromLocCode { get; set; } |
|
|
public string FromLocCode { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 来源仓库
|
|
|
/// 来源仓库
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("来源仓库")] |
|
|
[Display(Name = "来源仓库")] |
|
|
public string FromHose { get; set; } |
|
|
public string FromHose { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 来源ERP库存
|
|
|
/// 来源ERP库存
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("来源ERP库存")] |
|
|
[Display(Name = "来源ERP库存")] |
|
|
public string FromErpLocCode { get; set; } |
|
|
public string FromErpLocCode { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 目标库位
|
|
|
/// 目标库位
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("目标库位")] |
|
|
[Display(Name = "目标库位")] |
|
|
public string ToLocCode { get; set; } |
|
|
public string ToLocCode { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 目标仓库
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "目标仓库")] |
|
|
|
|
|
public string ToHose { get; set; } |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 目标Erp库位
|
|
|
/// 目标Erp库位
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("目标Erp库位")] |
|
|
[Display(Name = "目标Erp库位")] |
|
|
public string ToErpLocCode { get; set; } |
|
|
public string ToErpLocCode { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 目标仓库
|
|
|
/// 状态
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("目标仓库")] |
|
|
[Display(Name = "状态")] |
|
|
public string ToHose { get; set; } |
|
|
public EnumBillState State { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 备注
|
|
|
/// 备注
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("备注")] |
|
|
[Display(Name = "备注")] |
|
|
public string Remark { get; set; } |
|
|
public string Remark { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 单据类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "单据类型")] |
|
|
|
|
|
public EnumBillType BillType { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 子单据类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "子单据类型")] |
|
|
|
|
|
public EnumSubBillType SubBillType { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 业务类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "业务类型")] |
|
|
|
|
|
public EnumProTpe ProType { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 事务类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "事务类型")] |
|
|
|
|
|
public EnumDelTransType TransType { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 发运主类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "发运主类型")] |
|
|
|
|
|
public EnumDeliverBjBmpBillType DeliverBillType { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 发运子类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "发运子类型")] |
|
|
|
|
|
public EnumDeliverSubBillType DeliverSubBillType { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 创建时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "创建时间")] |
|
|
|
|
|
public DateTime CreateTime { get; set; } |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
@ -136,129 +208,182 @@ public class PUB_SE_DETAIL_RequestDto : RequestDto |
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
public class PUB_SE_DETAIL_EXPORT_DTO |
|
|
public class PUB_SE_DETAIL_EXPORT_DTO |
|
|
{ |
|
|
{ |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 期间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[ExporterHeader(DisplayName = "期间")] |
|
|
|
|
|
public int Version { set; get; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 发货时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[ExporterHeader(DisplayName = "发货时间")] |
|
|
|
|
|
public DateTime ShippingDate { set; get; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 发运单号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[ExporterHeader(DisplayName = "发运单号")] |
|
|
|
|
|
public string WmsBillNum { set; get; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 客户零件号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[ExporterHeader(DisplayName = "客户零件号")] |
|
|
|
|
|
public string LU { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 厂内零件号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[ExporterHeader(DisplayName = "厂内零件号")] |
|
|
|
|
|
public string FactoryPartCode { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 生产号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[ExporterHeader(DisplayName = "生产号")] |
|
|
|
|
|
public string PN { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 组合键值(PN+LU)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[ExporterHeader(DisplayName = "组合键值")] |
|
|
|
|
|
public string KeyCode { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 数量
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[ExporterHeader(DisplayName = "数量")] |
|
|
|
|
|
public decimal Qty { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// UID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "UID")] |
|
|
|
|
|
[ExporterHeader(DisplayName = "UID")] |
|
|
|
|
|
public long UID { get; set; } |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 发货单号
|
|
|
/// 发货单号
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[Display(Name = "发货单号")] |
|
|
[Display(Name = "发货单号")] |
|
|
[ExporterHeader(DisplayName = "发货单号")] |
|
|
[ExporterHeader(DisplayName = "发货单号")] |
|
|
public string WmsBillNum { get; set; } |
|
|
public string BillNum { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 发货时间
|
|
|
/// 发货时间
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("发货时间")] |
|
|
[Display(Name = "发货时间")] |
|
|
[ExporterHeader(DisplayName = "发货时间")] |
|
|
[ExporterHeader(DisplayName = "发货时间")] |
|
|
public DateTime BillTime { get; set; } |
|
|
public DateTime BillTime { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 订单时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "订单时间")] |
|
|
|
|
|
[ExporterHeader(DisplayName = "订单时间")] |
|
|
|
|
|
public DateTime AssembleData { get; set; } |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 零件号
|
|
|
/// 零件号
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("零件号")] |
|
|
[Display(Name = "零件号")] |
|
|
[ExporterHeader(DisplayName = "零件号")] |
|
|
[ExporterHeader(DisplayName = "零件号")] |
|
|
public string PartCode { get; set; } |
|
|
public string PartCode { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 批次
|
|
|
/// 批次
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("批次")] |
|
|
[Display(Name = "批次")] |
|
|
[ExporterHeader(DisplayName = "批次")] |
|
|
[ExporterHeader(DisplayName = "批次")] |
|
|
public string Batch { get; set; } |
|
|
public string Batch { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 客户零件号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "客户零件号")] |
|
|
|
|
|
[ExporterHeader(DisplayName = "客户零件号")] |
|
|
|
|
|
public string CustPartCode { get; set; } |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 发货人
|
|
|
/// 发货人
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("发货人")] |
|
|
[Display(Name = "发货人")] |
|
|
[ExporterHeader(DisplayName = "发货人")] |
|
|
[ExporterHeader(DisplayName = "发货人")] |
|
|
public string Oper { get; set; } |
|
|
public string Oper { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// DN单据号
|
|
|
/// DN单据号
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("DN单据号")] |
|
|
[Display(Name = "DN单据号")] |
|
|
[ExporterHeader(DisplayName = "DN单据号")] |
|
|
[ExporterHeader(DisplayName = "DN单据号")] |
|
|
public string DnBillNum { get; set; } |
|
|
public string DnBillNum { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// DN单据时间
|
|
|
/// DN单据时间
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("DN单据时间")] |
|
|
[Display(Name = "DN单据时间")] |
|
|
[ExporterHeader(DisplayName = "DN单据时间")] |
|
|
[ExporterHeader(DisplayName = "DN单据时间")] |
|
|
public DateTime DnBillTime { get; set; } |
|
|
public DateTime DnBillTime { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// DN单添加人
|
|
|
/// DN单添加人
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("DN单添加人")] |
|
|
[Display(Name = "DN单添加人")] |
|
|
[ExporterHeader(DisplayName = "DN单添加人")] |
|
|
[ExporterHeader(DisplayName = "DN单添加人")] |
|
|
public string DnOper { get; set; } |
|
|
public string DnOper { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 交付索引
|
|
|
/// 交付索引
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("交付索引")] |
|
|
[Display(Name = "交付索引")] |
|
|
[ExporterHeader(DisplayName = "交付索引")] |
|
|
[ExporterHeader(DisplayName = "交付索引")] |
|
|
public string DeliveryIndex { get; set; } |
|
|
public string DeliveryIndex { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 客户
|
|
|
/// 客户
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("客户")] |
|
|
[Display(Name = "客户")] |
|
|
[ExporterHeader(DisplayName = "客户")] |
|
|
[ExporterHeader(DisplayName = "客户")] |
|
|
public string CustId { get; set; } |
|
|
public string CustId { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 发货仓库
|
|
|
/// 发货仓库
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("发货仓库")] |
|
|
[Display(Name = "发货仓库")] |
|
|
[ExporterHeader(DisplayName = "发货仓库")] |
|
|
[ExporterHeader(DisplayName = "发货仓库")] |
|
|
public string DeliveryHose { get; set; } |
|
|
public string DeliveryHose { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 来源库位
|
|
|
/// 来源库位
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("来源库位")] |
|
|
[Display(Name = "来源库位")] |
|
|
[ExporterHeader(DisplayName = "来源库位")] |
|
|
[ExporterHeader(DisplayName = "来源库位")] |
|
|
public string FromLocCode { get; set; } |
|
|
public string FromLocCode { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 来源仓库
|
|
|
/// 来源仓库
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("来源仓库")] |
|
|
[Display(Name = "来源仓库")] |
|
|
[ExporterHeader(DisplayName = "来源仓库")] |
|
|
[ExporterHeader(DisplayName = "来源仓库")] |
|
|
public string FromHose { get; set; } |
|
|
public string FromHose { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 来源ERP库存
|
|
|
/// 来源ERP库存
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("来源ERP库存")] |
|
|
[Display(Name = "来源ERP库存")] |
|
|
[ExporterHeader(DisplayName = "来源ERP库存")] |
|
|
[ExporterHeader(DisplayName = "来源ERP库存")] |
|
|
public string FromErpLocCode { get; set; } |
|
|
public string FromErpLocCode { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 目标库位
|
|
|
/// 目标库位
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("目标库位")] |
|
|
[Display(Name = "目标库位")] |
|
|
[ExporterHeader(DisplayName = "目标库位")] |
|
|
[ExporterHeader(DisplayName = "目标库位")] |
|
|
public string ToLocCode { get; set; } |
|
|
public string ToLocCode { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 目标仓库
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "目标仓库")] |
|
|
|
|
|
[ExporterHeader(DisplayName = "目标仓库")] |
|
|
|
|
|
public string ToHose { get; set; } |
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 目标Erp库位
|
|
|
/// 目标Erp库位
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("目标Erp库位")] |
|
|
[Display(Name = "目标Erp库位")] |
|
|
[ExporterHeader(DisplayName = "目标Erp库位")] |
|
|
[ExporterHeader(DisplayName = "目标Erp库位")] |
|
|
public string ToErpLocCode { get; set; } |
|
|
public string ToErpLocCode { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 目标仓库
|
|
|
/// 状态
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("目标仓库")] |
|
|
[Display(Name = "状态")] |
|
|
[ExporterHeader(DisplayName = "目标仓库")] |
|
|
[ExporterHeader(DisplayName = "状态")] |
|
|
public string ToHose { get; set; } |
|
|
public EnumBillState State { get; set; } |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
/// 备注
|
|
|
/// 备注
|
|
|
/// </summary>
|
|
|
/// </summary>
|
|
|
[DisplayName("备注")] |
|
|
[Display(Name = "备注")] |
|
|
[ExporterHeader(DisplayName = "备注")] |
|
|
[ExporterHeader(DisplayName = "备注")] |
|
|
public string Remark { get; set; } |
|
|
public string Remark { get; set; } |
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 创建时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Display(Name = "创建时间")] |
|
|
|
|
|
[ExporterHeader(DisplayName = "创建时间")] |
|
|
|
|
|
public DateTime CreateTime { get; set; } |
|
|
} |
|
|
} |
|
|