26 lines
		
	
	
		
			575 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			575 B
		
	
	
	
		
			C#
		
	
	
| namespace IRaCIS.Core.Domain.Models;
 | |
| 
 | |
| [Comment("项目 - 项目中心用户角色关系表")]
 | |
| [Table("TrialSiteUser")]
 | |
| public class TrialSiteUserRole : BaseFullDeleteAuditEntity
 | |
| {
 | |
| 
 | |
|     #region 导航属性
 | |
|     [JsonIgnore]
 | |
|     [ForeignKey("UserId")]
 | |
|     public UserRole UserRole { get; set; }
 | |
|     [JsonIgnore]
 | |
|     [ForeignKey("TrialId")]
 | |
|     public Trial Trial { get; set; }
 | |
| 
 | |
|     [JsonIgnore]
 | |
|     public TrialSite TrialSite { get; set; }
 | |
| 
 | |
|     #endregion
 | |
|     public Guid TrialSiteId { get; set; }
 | |
| 
 | |
|     public Guid UserId { get; set; }
 | |
| 
 | |
|     public Guid TrialId { get; set; }
 | |
| }
 |