From c984e2e669413b7b4c178bd422eb01d0aa59ecd4 Mon Sep 17 00:00:00 2001 From: "747575620@qq.com" <747575620@qq.com> Date: Tue, 18 Jul 2023 17:09:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=B8=BB=E9=94=AEId?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BPA.MES.Base.Application.xml | 50 +++++++++++++++++++ .../CraftsInfoService/Dtos/CraftsInfoDto.cs | 6 ++- .../MaterialService/Dtos/MaterialsInfoDto.cs | 6 ++- .../ProductLineService/Dtos/GroupInfoDto.cs | 6 ++- .../RecipesService/Dtos/RecipeMaterialDto.cs | 5 ++ .../RecipesService/Dtos/RecipesInfoDto.cs | 28 +++++++++-- 6 files changed, 93 insertions(+), 8 deletions(-) diff --git a/backend/BPA.MES.Base.Application/BPA.MES.Base.Application.xml b/backend/BPA.MES.Base.Application/BPA.MES.Base.Application.xml index f2eeb8f..de99d0a 100644 --- a/backend/BPA.MES.Base.Application/BPA.MES.Base.Application.xml +++ b/backend/BPA.MES.Base.Application/BPA.MES.Base.Application.xml @@ -1166,6 +1166,12 @@ 输出 + + + 主键 + + + 名 称 :产线管理 @@ -2126,6 +2132,12 @@ 输出 + + + 主键 + + + 名 称 :物料服务 @@ -2295,6 +2307,12 @@ 输出 + + + 主键 + + + 名 称 :产线管理 @@ -2650,6 +2668,12 @@ 输出 + + + 主键 + + + 配方名称 @@ -2673,6 +2697,16 @@ 描 述 : + + + 名称 + + + + + 自定义编码 + + 增加 @@ -2683,6 +2717,11 @@ 更新 + + + 主键 + + 删除 @@ -2713,11 +2752,22 @@ 输出 + + + 主键 + + 分组Id + + + 主键 + + + 名 称 :配方物料服务 diff --git a/backend/BPA.MES.Base.Application/Services/CraftsInfoService/Dtos/CraftsInfoDto.cs b/backend/BPA.MES.Base.Application/Services/CraftsInfoService/Dtos/CraftsInfoDto.cs index 6bbc9fc..2606eff 100644 --- a/backend/BPA.MES.Base.Application/Services/CraftsInfoService/Dtos/CraftsInfoDto.cs +++ b/backend/BPA.MES.Base.Application/Services/CraftsInfoService/Dtos/CraftsInfoDto.cs @@ -63,6 +63,10 @@ /// public class CraftsInfoOutput : CraftsInfoDto { - + /// + /// 主键 + /// + /// + public string Id { get; set; } } } diff --git a/backend/BPA.MES.Base.Application/Services/MaterialService/Dtos/MaterialsInfoDto.cs b/backend/BPA.MES.Base.Application/Services/MaterialService/Dtos/MaterialsInfoDto.cs index aefae07..c960780 100644 --- a/backend/BPA.MES.Base.Application/Services/MaterialService/Dtos/MaterialsInfoDto.cs +++ b/backend/BPA.MES.Base.Application/Services/MaterialService/Dtos/MaterialsInfoDto.cs @@ -79,6 +79,10 @@ /// public class MaterialsInfoOutput : MaterialsInfoDto { - + /// + /// 主键 + /// + /// + public string Id { get; set; } } } diff --git a/backend/BPA.MES.Base.Application/Services/ProductLineService/Dtos/GroupInfoDto.cs b/backend/BPA.MES.Base.Application/Services/ProductLineService/Dtos/GroupInfoDto.cs index edcb5d1..408f415 100644 --- a/backend/BPA.MES.Base.Application/Services/ProductLineService/Dtos/GroupInfoDto.cs +++ b/backend/BPA.MES.Base.Application/Services/ProductLineService/Dtos/GroupInfoDto.cs @@ -59,6 +59,10 @@ /// public class GroupInfoOutput : GroupInfoDto { - + /// + /// 主键 + /// + /// + public string Id { get; set; } } } diff --git a/backend/BPA.MES.Base.Application/Services/RecipesService/Dtos/RecipeMaterialDto.cs b/backend/BPA.MES.Base.Application/Services/RecipesService/Dtos/RecipeMaterialDto.cs index 50e230d..ec2c641 100644 --- a/backend/BPA.MES.Base.Application/Services/RecipesService/Dtos/RecipeMaterialDto.cs +++ b/backend/BPA.MES.Base.Application/Services/RecipesService/Dtos/RecipeMaterialDto.cs @@ -75,6 +75,11 @@ /// public class RecipeMaterialOutput : RecipeMaterialDto { + /// + /// 主键 + /// + /// + public string Id { get; set; } /// /// 配方名称 /// diff --git a/backend/BPA.MES.Base.Application/Services/RecipesService/Dtos/RecipesInfoDto.cs b/backend/BPA.MES.Base.Application/Services/RecipesService/Dtos/RecipesInfoDto.cs index 2e4358e..83adee8 100644 --- a/backend/BPA.MES.Base.Application/Services/RecipesService/Dtos/RecipesInfoDto.cs +++ b/backend/BPA.MES.Base.Application/Services/RecipesService/Dtos/RecipesInfoDto.cs @@ -6,9 +6,16 @@ /// 创建时间 :2023/3/2 16:12:06 /// 描 述 : /// - public class RecipesInfoDto : RecipesInfoEntity + public class RecipesInfoDto { - + /// + /// 名称 + /// + public string Name { get; set; } + /// + /// 自定义编码 + /// + public string Code { get; set; } } /// /// 增加 @@ -22,7 +29,10 @@ /// public class RecipesInfoUpdateInput : RecipesInfoDto { - + /// + /// 主键 + /// + public string Id { get; set; } } /// /// 删除 @@ -53,14 +63,22 @@ /// public class RecipesInfoOutput : RecipesInfoDto { + /// + /// 主键 + /// + public string Id { get; set; } /// /// 分组Id /// - public string GroupId { get; set; } + public string GroupId { get; set; } } public class RecipesGroupInput : RecipesGroupEntity { - + /// + /// 主键 + /// + /// + public string Id { get; set; } } }