diff --git a/IRaCIS.Core.Application/Service/Allocation/TaskMedicalReviewService.cs b/IRaCIS.Core.Application/Service/Allocation/TaskMedicalReviewService.cs
index 26720db3d..11033cc75 100644
--- a/IRaCIS.Core.Application/Service/Allocation/TaskMedicalReviewService.cs
+++ b/IRaCIS.Core.Application/Service/Allocation/TaskMedicalReviewService.cs
@@ -120,9 +120,10 @@ namespace IRaCIS.Core.Application.Service
/// 获取医学经理列表
///
///
- public async Task> GetMIMUserList()
+ [HttpDelete("{trialId:guid}")]
+ public async Task> GetMIMUserList(Guid trialId)
{
- var query = _trialUserRepository.Where(t => t.User.UserTypeEnum == Domain.Share.UserTypeEnum.MIM).Select(t => t.User).ProjectTo(_mapper.ConfigurationProvider);
+ var query = _trialUserRepository.Where(t => t.User.UserTypeEnum == Domain.Share.UserTypeEnum.MIM && t.TrialId== trialId).Select(t => t.User).ProjectTo(_mapper.ConfigurationProvider);
return await query.ToListAsync();
}