bug
This commit is contained in:
@@ -7,6 +7,7 @@ using System;
|
||||
using IRaCIS.Core.Domain.Share;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace IRaCIS.Core.Application.ViewModel
|
||||
{
|
||||
@@ -20,6 +21,43 @@ namespace IRaCIS.Core.Application.ViewModel
|
||||
|
||||
public UserSimpleInfo DoctorUser { get; set; }
|
||||
|
||||
|
||||
|
||||
[JsonIgnore]
|
||||
public List<Guid> ActualVisitTaskIdList { get; set; }
|
||||
[JsonIgnore]
|
||||
public List<Guid> ActualJudgeTaskIdList { get; set; }
|
||||
[JsonIgnore]
|
||||
public List<Guid> ActualGlobalTaskIdList { get; set; }
|
||||
[JsonIgnore]
|
||||
public List<Guid> ActualTumorTaskIdList { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
[JsonIgnore]
|
||||
public List<Guid> GeneratedVisitTaskIdList { get; set; }
|
||||
[JsonIgnore]
|
||||
public List<Guid> GeneratedJudgeTaskIdList { get; set; }
|
||||
[JsonIgnore]
|
||||
public List<Guid> GeneratedGlobalTaskIdList { get; set; }
|
||||
[JsonIgnore]
|
||||
public List<Guid> GeneratedTumorTaskIdList { get; set; }
|
||||
|
||||
|
||||
public int GeneratedVisitCount => GeneratedVisitTaskIdList.Count;
|
||||
public int GeneratedJudgeCount => GeneratedJudgeTaskIdList.Count;
|
||||
public int GeneratedGlobalCount => GeneratedGlobalTaskIdList.Count;
|
||||
public int GeneratedTumorCount => GeneratedTumorTaskIdList.Count;
|
||||
|
||||
|
||||
|
||||
|
||||
public int ActualVisitCount => ActualVisitTaskIdList.Count;
|
||||
public int ActualJudgeCount => ActualJudgeTaskIdList.Count;
|
||||
public int ActualGlobalCount => ActualGlobalTaskIdList.Count;
|
||||
public int ActualTumorCount => ActualTumorTaskIdList.Count;
|
||||
|
||||
}
|
||||
|
||||
///<summary>TaskTaskMedicalReviewRuleQuery 列表查询参数模型</summary>
|
||||
|
||||
Reference in New Issue
Block a user