添加项目文件。
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace IRaCIS.Core.Domain.Models
|
||||
{
|
||||
[Table("Site")]
|
||||
public partial class Site : Entity, IAuditUpdate, IAuditAdd
|
||||
{
|
||||
public Hospital Hospital { get; set; }
|
||||
public string SiteName { get; set; }
|
||||
public string SiteCode { get; set; }
|
||||
|
||||
public string City { get; set; }
|
||||
public string Country { get; set; }
|
||||
public Guid? HospitalId { get; set; }
|
||||
public int State { get; set; }
|
||||
|
||||
public string UniqueCode { get; set; } = string.Empty;
|
||||
|
||||
public string Address { get; set; }
|
||||
|
||||
public string DirectorName { get; set; } = string.Empty;
|
||||
public string DirectorPhone { get; set; } = string.Empty;
|
||||
public string ContactName { get; set; } = string.Empty;
|
||||
public string ContactPhone { get; set; } = string.Empty;
|
||||
|
||||
public Guid CreateUserId { get; set; } = Guid.Empty;
|
||||
public DateTime CreateTime { get; set; } = DateTime.Now;
|
||||
public Guid UpdateUserId { get; set; } = Guid.Empty;
|
||||
public DateTime UpdateTime { get; set; } = DateTime.Now;
|
||||
|
||||
public List<Subject> SubjectList { get; set; }
|
||||
|
||||
//µ¼º½ÊôÐÔ
|
||||
public List<TrialSite> TrialSiteList { get; set; }
|
||||
|
||||
public List< TrialSiteUser> TrialSiteUserList { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user