Uat_Study
parent
c34425b231
commit
f665b1f623
|
@ -75,6 +75,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
|
||||
|
||||
public Guid SubjectVisitIdId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 模块名称
|
||||
/// </summary>
|
||||
public string ModuleName { get; set; }
|
||||
}
|
||||
|
||||
public class GetSubjectReadVisitsInDto
|
||||
|
|
|
@ -116,7 +116,8 @@ namespace IRaCIS.Application.Services
|
|||
public async Task<bool> ChangeCutOffVisit(ChangeCutOffVisitInDto inDto)
|
||||
{
|
||||
await _readModuleRepository.UpdatePartialFromQueryAsync(x => x.Id == inDto.Id, x => new ReadModule() {
|
||||
SubjectVisitId=inDto.SubjectVisitIdId
|
||||
SubjectVisitId=inDto.SubjectVisitIdId,
|
||||
ModuleName=inDto.ModuleName,
|
||||
});
|
||||
|
||||
return await _readModuleRepository.SaveChangesAsync();
|
||||
|
|
Loading…
Reference in New Issue