修改分配规则

This commit is contained in:
2022-06-08 14:22:38 +08:00
parent dbdcde2d0b
commit 404dc13001
14 changed files with 261 additions and 99 deletions
@@ -29,8 +29,31 @@ namespace IRaCIS.Core.Application.ViewModel
public int? SelfTaskCount { get; set; }
public List<int> ArmList { get; set; }
}
public class AllocateInfo
{
public int? TotalTaskCount { get; set; }
public int? SelfTaskCount { get; set; }
public int PlanReadingRatio { get; set; }
public Guid DoctorUserId { get; set; }
public List<int> ArmList { get; set; }
//public double? TargetCount => TotalTaskCount * PlanReadingRatio * 0.01;
//public double? Diff => TargetCount - SelfTaskCount;
}
///<summary>TaskAllocationRuleQuery 列表查询参数模型</summary>
public class TaskAllocationRuleQuery
{