[上传监控修改,增加搜索条件]
	
		
			
	
		
	
	
		
			
				
	
				continuous-integration/drone/push Build is passing
				
					Details
				
			
		
	
				
					
				
			
				
	
				continuous-integration/drone/push Build is passing
				
					Details
				
			
		
	
							parent
							
								
									f94e9c98f9
								
							
						
					
					
						commit
						127916f03e
					
				| 
						 | 
				
			
			@ -181,6 +181,8 @@ namespace IRaCIS.Core.Application.Contracts
 | 
			
		|||
		public string? Uploader { get; set; }
 | 
			
		||||
 | 
			
		||||
		public bool? IsSuccess { get; set; }
 | 
			
		||||
 | 
			
		||||
        public string? StudyCode { get; set; }
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -463,10 +463,11 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
 | 
			
		|||
                 .WhereIf(studyQuery.SubjectId != null, t => t.SubjectId == studyQuery.SubjectId)
 | 
			
		||||
                 .WhereIf(studyQuery.SubjectVisitId != null, t => t.SubjectId == studyQuery.SubjectVisitId)
 | 
			
		||||
                 .WhereIf(studyQuery.SiteId != null, t => t.SiteId == studyQuery.SiteId)
 | 
			
		||||
					.WhereIf(studyQuery.IsDicom != null, t => t.IsDicom == studyQuery.IsDicom )
 | 
			
		||||
					 .WhereIf(!string.IsNullOrWhiteSpace(studyQuery.Uploader), t => t.Uploader.UserName.Contains(studyQuery.Uploader))
 | 
			
		||||
					 .WhereIf(studyQuery.IsSuccess != null, t => t.IsSuccess == studyQuery.IsSuccess)
 | 
			
		||||
				 .Select(t => new UnionStudyMonitorModel()
 | 
			
		||||
				 .WhereIf(studyQuery.IsDicom != null, t => t.IsDicom == studyQuery.IsDicom )
 | 
			
		||||
				 .WhereIf(!string.IsNullOrWhiteSpace(studyQuery.Uploader), t => t.Uploader.UserName.Contains(studyQuery.Uploader))
 | 
			
		||||
				 .WhereIf(studyQuery.IsSuccess != null, t => t.IsSuccess == studyQuery.IsSuccess)
 | 
			
		||||
                 .WhereIf(!string.IsNullOrWhiteSpace(studyQuery.StudyCode), t => t.StudyCode.Contains(studyQuery.StudyCode))
 | 
			
		||||
                 .Select(t => new UnionStudyMonitorModel()
 | 
			
		||||
                 {
 | 
			
		||||
                     TrialId = t.TrialId,
 | 
			
		||||
                     SiteId = t.SiteId,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue