From 2fbed8bdb604c77a9c6ca85a32bc93d19bd23359 Mon Sep 17 00:00:00 2001 From: bairubing Date: Fri, 25 Oct 2024 10:43:15 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=98=8ESap=E6=9C=8D=E5=8A=A1Bom=E8=BE=93?= =?UTF-8?q?=E5=85=A5=E5=8F=82=E6=95=B0=EF=BC=8C=E5=A2=9E=E5=8A=A0=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E5=A4=87=E6=B3=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SapService/Dto/SapBomInput.cs | 76 +++++++++++++++++++ 1 file changed, 76 insertions(+) diff --git a/admin.net.pro/Admin.NET/Vistar.Application/SapService/Dto/SapBomInput.cs b/admin.net.pro/Admin.NET/Vistar.Application/SapService/Dto/SapBomInput.cs index e6c405e..36154d9 100644 --- a/admin.net.pro/Admin.NET/Vistar.Application/SapService/Dto/SapBomInput.cs +++ b/admin.net.pro/Admin.NET/Vistar.Application/SapService/Dto/SapBomInput.cs @@ -14,34 +14,110 @@ using System.Threading.Tasks; namespace Vistar.Application.SapService.Dto; public class IS_REQ { + /// + /// 接口唯一ID + /// public string ReqKeyId { get; set; } + /// + /// 业务唯一ID + /// public string BusinessId { get; set; } + /// + /// 传入消息ID + /// public string MessageId { get; set; } + /// + /// 发送方的合作伙伴编号 + /// public string SndPrn { get; set; } + /// + /// 接收方的合作伙伴编号 + /// public string RcvPrn { get; set; } + /// + /// 用户名 + /// public string ReqUser { get; set; } + /// + /// 备注 + /// public string Note1 { get; set; } + /// + /// 备注 + /// public string Note2 { get; set; } + /// + /// 备注 + /// public string Note3 { get; set; } + /// + /// 外部唯一ID + /// public string Zwbid { get; set; } + /// + /// 抬头物料 + /// public string Matnr { get; set; } + /// + /// 工厂 + /// public string Werks { get; set; } + /// + /// 基本数量 + /// public string Bmeng { get; set; } + /// + /// ECN号 + /// public string Aennr { get; set; } + /// + /// 有效日期 + /// public string Datuv { get; set; } public List ItemList { get; set; } } public class ItemData { + /// + /// 组件序号 十位进 + /// public string POSNR { get; set; } + /// + /// 组件物料号 + /// public string IDNRK { get; set; } + /// + /// 组件数量 + /// public string MENGE { get; set; } + /// + /// 排序字符串 + /// public string SORTF { get; set; } + /// + /// 是否虚拟 + /// public string ITISOB { get; set; } + /// + /// 替代组 + /// public string ALPGR { get; set; } + /// + /// 优先级 + /// public string ALPRF { get; set; } + /// + /// 是否删除 + /// public string ZDELETE { get; set; } + + /// + /// 行项目类别 + /// public string POSTP { get; set; } + /// + /// 研发模块 + /// public string ZYFMK { get; set; } }