物料类型信息设置TCODE(FNumber)、物料信息项设置ItemNo(FNumber)、物料单位信息Fnumber(Fnumber)为必须传入项
已修改3个文件
6 ■■■■ 文件已修改
MES.Service/Dto/webApi/ErpItemType.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
MES.Service/Dto/webApi/ErpItems.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
MES.Service/Dto/webApi/ErpUnit.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
MES.Service/Dto/webApi/ErpItemType.cs
@@ -5,7 +5,7 @@
    public string? Type { get; set; }
    public string? Id { get; set; }
    public string? fParentGroup { get; set; }
    public string? FNumber { get; set; }
    public string FNumber { get; set; }
    public string? FName { get; set; }
    public string? MA011 { get; set; }
MES.Service/Dto/webApi/ErpItems.cs
@@ -3,7 +3,7 @@
public class ErpItems
{
    public string? Id { get; set; }
    public string? FNumber { get; set; }
    public string FNumber { get; set; }
    public string? FName { get; set; }
    public string? FSpecification { get; set; }
    public string? FBaseUnitId { get; set; }
MES.Service/Dto/webApi/ErpUnit.cs
@@ -4,7 +4,7 @@
{
    public string? Type { get; set; }
    public string? Id { get; set; }
    public string? FNumber { get; set; }
    public string FNumber { get; set; }
    public string? FName { get; set; }
    public string? FUnitGroupId { get; set; }
    public string? ConvertDenominator { get; set; }