任务手动分配
This commit is contained in:
@@ -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,
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user