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; }
}