修改分配规则

This commit is contained in:
2022-06-08 14:22:38 +08:00
parent dbdcde2d0b
commit 404dc13001
14 changed files with 261 additions and 99 deletions
@@ -7,6 +7,8 @@ using System;
using IRaCIS.Core.Domain.Share;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Collections.Generic;
namespace IRaCIS.Core.Domain.Models
{
///<summary>
@@ -51,8 +53,11 @@ namespace IRaCIS.Core.Domain.Models
[Required]
public int PlanReadingRatio { get; set; }
public Guid DoctorUserId { get; set; }
[ForeignKey("DoctorUserId")]
public User DoctorUser { get; set; }
@@ -65,6 +70,11 @@ namespace IRaCIS.Core.Domain.Models
public string Note { get; set; } = string.Empty;
public List<VisitTask> VisitTaskList { get; set; } = new List<VisitTask>();
///// <summary>
///// Arm 组
///// </summary>