From 6a5ee883510299f2c580c65042a71ca8a319ef5b Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Fri, 1 Apr 2022 15:47:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=BF=94=E5=9B=9E=E7=9A=84?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Inspection/DTO/InspectionModel.cs | 6 ++---- .../Service/Inspection/InspectionService.cs | 1 + 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Inspection/DTO/InspectionModel.cs b/IRaCIS.Core.Application/Service/Inspection/DTO/InspectionModel.cs index 303959648..c339dccdf 100644 --- a/IRaCIS.Core.Application/Service/Inspection/DTO/InspectionModel.cs +++ b/IRaCIS.Core.Application/Service/Inspection/DTO/InspectionModel.cs @@ -203,13 +203,11 @@ namespace IRaCIS.Core.Application.Service.Inspection.DTO public string CreateUser { get; set; } = string.Empty; public string UserFirstName { get; set; } = string.Empty; public string UserLastName { get; set; } = string.Empty; - - - - public string Description { get; set; } = string.Empty; + public string ModuleTypeName { get; set; } = string.Empty; + } diff --git a/IRaCIS.Core.Application/Service/Inspection/InspectionService.cs b/IRaCIS.Core.Application/Service/Inspection/InspectionService.cs index 5ae7c6f3e..4e8e280ab 100644 --- a/IRaCIS.Core.Application/Service/Inspection/InspectionService.cs +++ b/IRaCIS.Core.Application/Service/Inspection/InspectionService.cs @@ -111,6 +111,7 @@ namespace IRaCIS.Core.Application.Service.Inspection ResearchProgramNo=data.ResearchProgramNo, ObjectType=data.ObjectType, Description=leftfrontAuditConfig.Description, + ModuleTypeName= leftmoduleTypec.ValueCN, }; query = query.WhereIf(!dto.BlindName.IsNullOrEmpty(), x => x.BlindName == dto.BlindName)