修改裁判任务分配

This commit is contained in:
2022-06-20 15:54:09 +08:00
parent 522d7eca07
commit 243cbec782
15 changed files with 143 additions and 59 deletions
@@ -39,37 +39,42 @@ namespace IRaCIS.Core.Application.ViewModel
//该医生未应用Subject 数量 不是两者相减 跟批量勾选有关系
public int? WaitApplySelfSubjectCount { get; set; }
//该医生未应用的任务数
public int? WaitApplySelfTaskCount { get; set; }
//该医生已应用的任务数
public int? SelfApplyedTaskCount { get; set; }
//总共未应用的Subejct 数量
public int? WaitApplyTotalSubjectCount { get; set; }
public int? WaitApplyTotalTaskCount { get; set; }
//该医生已应用的任务数
public int? SelfApplyedTaskCount { get; set; }
//已分配但是未读片签名的数量
//已分配该医生但是未读片签名的数量
public int? SelfUndoTaskCount { get; set; }
//总共已应用 的Subject 数
public int? ApplyedTotalSubjectCount { get; set; }
//总共 已经应用的任务总数
public int? ApplyedTotalTaskCount { get; set; }
//系统 Subject数
public int? TotalSubjectCount { get; set; }
//总任务数
public int? TotalTaskCount { get; set; }
//总共 已经应用的任务总数
public int? ApplyedTotalTaskCount { get; set; }
@@ -106,6 +111,8 @@ namespace IRaCIS.Core.Application.ViewModel
{
[NotDefault]
public Guid TrialId { get; set; }
public bool? IsJudgeDoctor { get; set; }
}
///<summary> TaskAllocationRuleAddOrEdit 列表查询参数模型</summary>
@@ -116,6 +123,8 @@ namespace IRaCIS.Core.Application.ViewModel
public int PlanReadingRatio { get; set; }
public Guid DoctorUserId { get; set; }
public bool IsEnable { get; set; }
public bool IsJudgeDoctor { get; set; }
public string Note { get; set; } = string.Empty;
}