修改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
db6c0457ae
commit
e4cc044219
|
|
@ -1313,7 +1313,14 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
||||||
// V3与V2的间隔 >= 6周
|
// V3与V2的间隔 >= 6周
|
||||||
|
|
||||||
// 按上面条件写三个if看着清晰点
|
// 按上面条件写三个if看着清晰点
|
||||||
if (lastNewLesionsCount + lastBTN - lastTwoBTN >= 2)
|
|
||||||
|
var lastBtnSubMin = lastBTN - lastTwoBTN;
|
||||||
|
if (lastBtnSubMin < 0)
|
||||||
|
{
|
||||||
|
lastBtnSubMin = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (lastNewLesionsCount + lastBtnSubMin >= 2)
|
||||||
{
|
{
|
||||||
if (thisNewBoneLesionsCount + btnValue + thisNewLesionsCount >= 2)
|
if (thisNewBoneLesionsCount + btnValue + thisNewLesionsCount >= 2)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue