修改bug

This commit is contained in:
2022-10-21 17:24:43 +08:00
parent 39766b1610
commit 8e25fd6dcb
2 changed files with 2 additions and 3 deletions
@@ -275,11 +275,10 @@ namespace IRaCIS.Core.Application.Service
/// </summary>
/// <param name="param"></param>
/// <returns></returns>
[HttpPost]
public async Task<List<TrialUserSelct>> GetTrialUserSelectList(Guid trialId)
{
var query = _trialUserRepository.Where(t => t.TrialId == param.TrialId && t.IsDeleted==false,false,true ).IgnoreQueryFilters()
var query = _trialUserRepository.Where(t => t.TrialId == trialId && t.IsDeleted==false,false,true ).IgnoreQueryFilters()
.ProjectTo<TrialUserSelct>(_mapper.ConfigurationProvider);