54 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
 | 
						|
//--------------------------------------------------------------------
 | 
						|
//     此代码由T4模板自动生成  byzhouhang 20210918
 | 
						|
//	   生成时间 2022-06-29 13:32:34 
 | 
						|
//     对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
 | 
						|
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>
 | 
						|
	 ///TaskTaskMedicalReviewRule
 | 
						|
	 ///</summary>
 | 
						|
	 [Table("TaskMedicalReviewRule")]	
 | 
						|
	 public class TaskMedicalReviewRule : Entity, IAuditUpdate, IAuditAdd
 | 
						|
	 {
 | 
						|
	 
 | 
						|
		public Guid CreateUserId { get; set; }
 | 
						|
	
 | 
						|
		public DateTime CreateTime { get; set; }
 | 
						|
	
 | 
						|
		public DateTime UpdateTime { get; set; }
 | 
						|
 | 
						|
		public Guid UpdateUserId { get; set; }
 | 
						|
 | 
						|
		public Guid DoctorUserId { get; set; }
 | 
						|
	
 | 
						|
		public bool IsEnable { get; set; }
 | 
						|
	
 | 
						|
		public string Note { get; set; }
 | 
						|
 | 
						|
		public Guid TrialId { get; set; }	
 | 
						|
 | 
						|
		public int PlanVisitCount { get; set; }
 | 
						|
 | 
						|
		public int PlanJudgeCount { get; set; }
 | 
						|
	
 | 
						|
		public int PlanGlobalCount { get; set; }
 | 
						|
 | 
						|
		public int PlanTumorCount { get; set; }
 | 
						|
		[JsonIgnore]
 | 
						|
		public User DoctorUser { get; set; }
 | 
						|
		[JsonIgnore]
 | 
						|
		public List<VisitTask> DoctorTrialVisitTaskList { get; set; }
 | 
						|
		[JsonIgnore]
 | 
						|
		public List<TaskMedicalReview> TaskMedicalReviewList { get; set; }
 | 
						|
 | 
						|
	}
 | 
						|
 | 
						|
}	 
 |