金蝶同步wms

This commit is contained in:
18942506660
2023-11-06 11:43:29 +08:00
parent 8d6ca8104f
commit 729119abf7
15 changed files with 417 additions and 89 deletions

View File

@@ -0,0 +1,53 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Erp.OutStock
{
/// <summary>
/// 发货通知单转出库任务
/// </summary>
public class ErpDeliveryNoticeOutStockResultDto
{
/// <summary>
/// 来源单号
///</summary>
public string SourceBillNo { get; set; }
/// <summary>
/// 销售订单号
///</summary>
public string SaleBillNo { get; set; }
/// <summary>
/// 发货组织
///</summary>
public int DeliveryOrgId { get; set; }
/// <summary>
/// 收货客户
///</summary>
public int ReceiptCustomerId { get; set; }
/// <summary>
/// 物料Id
///</summary>
public int MaterialId { get; set; }
/// <summary>
/// 仓库ID
///</summary>
public int StockId { get; set; }
/// <summary>
/// 仓位ID
///</summary>
public int? SubStockId { get; set; }
/// <summary>
/// 应出库数量
///</summary>
public decimal AccruedQty { get; set; }
/// <summary>
/// 订单明细备注
///</summary>
public string Remark { get; set; }
/// <summary>
/// 创建时间erp那边的创建时间
///</summary>
public DateTime? CreateTime { get; set; }
}
}