18 lines
		
	
	
		
			443 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			443 B
		
	
	
	
		
			C#
		
	
	
namespace IRaCIS.Core.Domain.Models;
 | 
						|
 | 
						|
[Comment("机构 - Sponsor")]
 | 
						|
[Table("Sponsor")]
 | 
						|
public partial class Sponsor : BaseFullAuditEntity
 | 
						|
{
 | 
						|
    #region 导航属性
 | 
						|
 | 
						|
    #endregion
 | 
						|
    public string SponsorName { get; set; } = String.Empty;
 | 
						|
    public string SponsorNameCN { get; set; } = String.Empty;
 | 
						|
 | 
						|
    public string SponsorCode { get; set; } = String.Empty;
 | 
						|
 | 
						|
    public bool IsTrialLevel { get; set; }
 | 
						|
    public Guid? TrialId { get; set; }
 | 
						|
}
 |