Files
irc-netcore-api/IRaCIS.Core.Domain/Allocation/TaskAllocationRule.cs
T
hang 32c6d745b6
continuous-integration/drone/push Build is passing
用户角色重命名初步修改
2024-12-25 09:31:36 +08:00

37 lines
836 B
C#

namespace IRaCIS.Core.Domain.Models;
[Comment("项目阅片 - 分配规则")]
[Table("TaskAllocationRule")]
public class TaskAllocationRule : BaseFullAuditEntity
{
#region 导航属性
[ForeignKey("DoctorUserId")]
[JsonIgnore]
public UserRole DoctorUser { get; set; }
[JsonIgnore]
public Enroll Enroll { get; set; }
[JsonIgnore]
public Trial Trial { get; set; }
#endregion
public Guid TrialId { get; set; }
public int PlanSubjectCount { get; set; }
public bool IsEnable { get; set; }
public string Note { get; set; } = string.Empty;
public Guid DoctorUserId { get; set; }
public Guid EnrollId { get; set; }
[Comment("是否是裁判医生 裁判医生单独加入")]
public bool IsJudgeDoctor { get; set; }
public int PlanReadingRatio { get; set; }
}