This commit is contained in:
he
2023-02-23 14:51:01 +08:00
parent 9e0f4eb0d6
commit c9b6287b46
8 changed files with 161 additions and 5 deletions
@@ -304,7 +304,23 @@ namespace IRaCIS.Application.Contracts
}
public class SetTaskUrgentInDto
{
public Guid VisitTaskId { get; set; }
public bool IsUrgent { get; set; }
/// <summary>
/// 加急类型
/// </summary>
public TaskUrgentType? TaskUrgentType { get; set; }
/// <summary>
/// 任务加急备注
/// </summary>
public string TaskUrgentRemake { get; set; } = string.Empty;
}
public class DoctorUserTask
{
public ReadingTaskState ReadingTaskState { get; set; }