Compare commits
No commits in common. "1efd41e7ac39f5dee8dfa91e1a2ca0c52af83732" and "f92ace189460205c9e889995622c86c8f63e0064" have entirely different histories.
1efd41e7ac
...
f92ace1894
|
@ -103,10 +103,10 @@ namespace IRaCIS.Application.Services
|
||||||
var entity = _mapper.Map<ReadingClinicalData>(indto);
|
var entity = _mapper.Map<ReadingClinicalData>(indto);
|
||||||
entity.ReadingClinicalDataPDFList = indto.AddFileList.Select(x => new ReadingClinicalDataPDF()
|
entity.ReadingClinicalDataPDFList = indto.AddFileList.Select(x => new ReadingClinicalDataPDF()
|
||||||
{
|
{
|
||||||
|
|
||||||
FileName = x.FileName,
|
FileName = x.FileName,
|
||||||
Path = x.Path,
|
Path = x.Path,
|
||||||
Size = x.Size,
|
|
||||||
Type = x.Type,
|
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
entity.ReadingClinicalDataState = ReadingClinicalDataStatus.HaveUploaded;
|
entity.ReadingClinicalDataState = ReadingClinicalDataStatus.HaveUploaded;
|
||||||
|
@ -127,8 +127,7 @@ namespace IRaCIS.Application.Services
|
||||||
|
|
||||||
FileName = x.FileName,
|
FileName = x.FileName,
|
||||||
Path = x.Path,
|
Path = x.Path,
|
||||||
Size = x.Size,
|
|
||||||
Type = x.Type,
|
|
||||||
ReadingClinicalDataId = entity.Id,
|
ReadingClinicalDataId = entity.Id,
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
|
@ -210,9 +209,7 @@ namespace IRaCIS.Application.Services
|
||||||
PDFFileList = x.ReadingClinicalDataPDFList.Select(y => new GetFileDto()
|
PDFFileList = x.ReadingClinicalDataPDFList.Select(y => new GetFileDto()
|
||||||
{
|
{
|
||||||
Id = y.Id,
|
Id = y.Id,
|
||||||
Size = y.Size,
|
FileName = y.FileName,
|
||||||
Type = y.Type,
|
|
||||||
FileName = y.FileName,
|
|
||||||
Path = y.Path,
|
Path = y.Path,
|
||||||
CreateTime = y.CreateTime,
|
CreateTime = y.CreateTime,
|
||||||
}).ToList(),
|
}).ToList(),
|
||||||
|
|
|
@ -184,17 +184,7 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
/// 路径
|
/// 路径
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string Path { get; set; }
|
public string Path { get; set; }
|
||||||
|
}
|
||||||
/// <summary>
|
|
||||||
/// 大小
|
|
||||||
/// </summary>
|
|
||||||
public int Size { get; set; } = 0;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 文件类型
|
|
||||||
/// </summary>
|
|
||||||
public string Type { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public class GetReadingOrTaskClinicalDataListInDto
|
public class GetReadingOrTaskClinicalDataListInDto
|
||||||
|
@ -499,21 +489,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||||
|
|
||||||
public string FileName { get; set; }
|
public string FileName { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
/// <summary>
|
/// 上传时间
|
||||||
/// 大小
|
/// </summary>
|
||||||
/// </summary>
|
public DateTime CreateTime { get; set; }
|
||||||
public int Size { get; set; } = 0;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 文件类型
|
|
||||||
/// </summary>
|
|
||||||
public string Type { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 上传时间
|
|
||||||
/// </summary>
|
|
||||||
public DateTime CreateTime { get; set; }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -44,16 +44,8 @@ namespace IRaCIS.Core.Domain.Models
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Guid CreateUserId { get; set; }
|
public Guid CreateUserId { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 大小
|
|
||||||
/// </summary>
|
|
||||||
public int Size { get; set; } = 0;
|
|
||||||
|
|
||||||
/// <summary>
|
}
|
||||||
/// 文件类型
|
|
||||||
/// </summary>
|
|
||||||
public string Type { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue