From b3cbeec348e826813c176340f1b0010bb2ece2cd Mon Sep 17 00:00:00 2001 From: cnf <3200815559@qq.com> Date: 星期三, 12 二月 2025 16:13:55 +0800 Subject: [PATCH] 新增销售订单保存接口,销售退货通知单保存接口,销售发货通知单保存接口 --- MES.Service/Dto/webApi/ErpSalesDeliveryNoticeDetail.cs | 41 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 41 insertions(+), 0 deletions(-) diff --git a/MES.Service/Dto/webApi/ErpSalesDeliveryNoticeDetail.cs b/MES.Service/Dto/webApi/ErpSalesDeliveryNoticeDetail.cs new file mode 100644 index 0000000..724e76f --- /dev/null +++ b/MES.Service/Dto/webApi/ErpSalesDeliveryNoticeDetail.cs @@ -0,0 +1,41 @@ +锘縩amespace MES.Service.Dto.webApi +{ + public class ErpSalesDeliveryNoticeDetail + { + public string? Id { get; set; } + public string? type { get; set; } + public string? erpID { get; set; } + public string? ehid { get; set; } + public string? fMaterialId { get; set; } + public string? fUnitID { get; set; } + public string? fQty { get; set; } + public string? fIsFree { get; set; } + public string? fDeliverydate { get; set; } + public string? fStockId { get; set; } + public string? fMtoNo { get; set; } + public string? fLot { get; set; } + public string? fStockUnitID { get; set; } + public string? fStockQty { get; set; } + public string? fOwnerTypeID { get; set; } + public string? fOwnerId { get; set; } + public string? fSrcType { get; set; } + public string? fSrcBillNo { get; set; } + public string? fOrderNo { get; set; } + public string? fPriceUnitQty { get; set; } + public string? fOwnerIdHead { get; set; } + public string? fPlanDeliveryDate { get; set; } + public string? fOutLmtUnit { get; set; } + public string? fOutMaxQty { get; set; } + public string? fOutMinQty { get; set; } + public string? fDeliveryLoc { get; set; } + public string? fDeliveryLAddress { get; set; } + public string? fTerminationStatus { get; set; } + public string? fTerminateDate { get; set; } + public string? fSumOutQty { get; set; } + public string? fRemainOutQty { get; set; } + public string? FNoteEntry { get; set; } + + + + } +} -- Gitblit v1.9.3