任务手动分配

This commit is contained in:
2022-06-13 13:57:29 +08:00
parent d40696071b
commit bb1480b787
3 changed files with 69 additions and 2 deletions
@@ -109,7 +109,7 @@ namespace IRaCIS.Core.Application.ViewModel
public String TrialSiteCode { get; set; } = String.Empty;
public string SubjectCode { get; set; } = String.Empty;
public bool IsAssignDoctorUser { get; set; }
@@ -171,6 +171,32 @@ namespace IRaCIS.Core.Application.ViewModel
{
public Guid TrialId { get; set; }
}
public class AssignSubjectTaskToDoctorCommand
{
public Guid Id { get; set; }
public Guid TrialId { get; set; }
public Guid SubjectId { get; set; }
public Guid DoctorUserId { get; set; }
public TaskOptType TaskOptType { get; set; }
}
public enum TaskOptType
{
Assign = 1,
ReAssign = 2,
Confirm = 3,
CancelConfirm = 4,
}
}