Compare commits
No commits in common. "053a09a5b2c27c3d9395db24425df8b0b17db080" and "336e7768b830ee2d97eb0b300ab261179cce27e2" have entirely different histories.
053a09a5b2
...
336e7768b8
|
@ -22,6 +22,7 @@ namespace IRaCIS.Core.Application.Contracts
|
||||||
|
|
||||||
public class TaskDicomStudyView : NoneDicomStudyView
|
public class TaskDicomStudyView : NoneDicomStudyView
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
///<summary>NoneDicomStudyQuery 列表查询参数模型</summary>
|
///<summary>NoneDicomStudyQuery 列表查询参数模型</summary>
|
||||||
|
|
|
@ -5,7 +5,6 @@ using IRaCIS.Core.Domain.Share;
|
||||||
using MassTransit;
|
using MassTransit;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Panda.DynamicWebApi.Attributes;
|
using Panda.DynamicWebApi.Attributes;
|
||||||
using System.Linq.Dynamic.Core;
|
|
||||||
|
|
||||||
namespace IRaCIS.Core.Application.Service
|
namespace IRaCIS.Core.Application.Service
|
||||||
{
|
{
|
||||||
|
@ -104,7 +103,7 @@ namespace IRaCIS.Core.Application.Service
|
||||||
.ProjectTo<TaskDicomStudyView>(_mapper.ConfigurationProvider, new { isFilterZip = true, visiTaskId = inDto.VisistTaskId });
|
.ProjectTo<TaskDicomStudyView>(_mapper.ConfigurationProvider, new { isFilterZip = true, visiTaskId = inDto.VisistTaskId });
|
||||||
}
|
}
|
||||||
|
|
||||||
List<NoneDicomStudyView> result = await noneDicomStudyQueryable.OrderBy(x=>x.ImageDate).ThenBy(x=>x.CreateTime).ToListAsync();
|
List<NoneDicomStudyView> result = await noneDicomStudyQueryable.ToListAsync();
|
||||||
|
|
||||||
|
|
||||||
var trialInfo = await _trialRepository.Where(x => x.Id == inDto.TrialId).Select(x => new
|
var trialInfo = await _trialRepository.Where(x => x.Id == inDto.TrialId).Select(x => new
|
||||||
|
|
Loading…
Reference in New Issue