导入修改
continuous-integration/drone/push Build is passing

This commit is contained in:
he
2025-12-23 09:48:00 +08:00
parent e113bc9fe1
commit 052ac1ff8d
2 changed files with 39 additions and 20 deletions
@@ -252,17 +252,17 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// <summary>
/// 第一次
/// </summary>
public int FirstData { get; set; }
public decimal FirstData { get; set; }
/// <summary>
/// 第二次
/// </summary>
public int SecondData { get; set; }
public decimal SecondData { get; set; }
/// <summary>
/// 第三次
/// </summary>
public int ThirdData { get; set; }
public decimal ThirdData { get; set; }
/// <summary>
/// 巨噬细胞浸润测量
@@ -273,29 +273,29 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// <summary>
/// 巨噬细胞浸润角度测量
/// </summary>
public string MacrophageInfiltrationAngle { get; set; }
public decimal? MacrophageInfiltrationAngle { get; set; }
/// <summary>
/// 微通道测量
/// </summary>
public string MicrochannelMeasurement { get; set; }
public decimal? MicrochannelMeasurement { get; set; }
/// <summary>
/// 胆固醇结晶测量
/// </summary>
public string CholesterolCrystalMeasurement { get; set; }
public decimal? CholesterolCrystalMeasurement { get; set; }
/// <summary>
/// 官腔面积测量
/// </summary>
public string LumenAreaMeasurement { get; set; }
public decimal? LumenAreaMeasurement { get; set; }
public decimal Avg { get {
return ( FirstData*1m + SecondData * 1m + ThirdData * 1m) / 3;
return ( FirstData + SecondData + ThirdData) / 3;
} }
}