Uat_Study
parent
bed0b41789
commit
5c760a83d6
|
@ -80,7 +80,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 模块名称
|
/// 模块名称
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string ModuleName { get; set; }
|
public string Name { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class GetSubjectReadVisitsInDto
|
public class GetSubjectReadVisitsInDto
|
||||||
|
|
|
@ -117,7 +117,7 @@ namespace IRaCIS.Application.Services
|
||||||
{
|
{
|
||||||
await _readModuleRepository.UpdatePartialFromQueryAsync(x => x.Id == inDto.Id, x => new ReadModule() {
|
await _readModuleRepository.UpdatePartialFromQueryAsync(x => x.Id == inDto.Id, x => new ReadModule() {
|
||||||
SubjectVisitId=inDto.SubjectVisitIdId,
|
SubjectVisitId=inDto.SubjectVisitIdId,
|
||||||
ModuleName=inDto.ModuleName,
|
ModuleName=inDto.Name,
|
||||||
});
|
});
|
||||||
|
|
||||||
return await _readModuleRepository.SaveChangesAsync();
|
return await _readModuleRepository.SaveChangesAsync();
|
||||||
|
|
Loading…
Reference in New Issue