Test.EIImageViewer
he 2023-01-09 11:51:13 +08:00
parent 7589a25ed3
commit 57b28e7356
3 changed files with 9 additions and 1 deletions

View File

@ -17,11 +17,15 @@ namespace IRaCIS.Application.Contracts
public string SiteCode { get; set; } = String.Empty;
public string Address { get; set; } = String.Empty;
public string Province { get; set; } = string.Empty;
public string UniqueCode { get; set; } = string.Empty;
public string AliasName { get; set; } = string.Empty;
public string City { get; set; } = string.Empty;
public string Country { get; set; } = string.Empty;
public string Province { get; set; } = string.Empty;
public Guid? HospitalId { get; set; }
public string DirectorName { get; set; } = string.Empty;
public string DirectorPhone { get; set; } = string.Empty;
@ -34,6 +38,8 @@ namespace IRaCIS.Application.Contracts
public Guid Id { get; set; }
public string SiteName { get; set; } = String.Empty;
public string City { get; set; } = String.Empty;
public string Province { get; set; } = string.Empty;
public string Country { get; set; } = String.Empty;
}

View File

@ -33,7 +33,7 @@ namespace IRaCIS.Core.Domain.Models
[JsonIgnore]
[ForeignKey("SiteId")]]
[ForeignKey("SiteId")]
public Site Site { get; set; }
[JsonIgnore]

View File

@ -21,6 +21,8 @@ namespace IRaCIS.Core.Domain.Models
public Guid? HospitalId { get; set; }
public int State { get; set; }
public string Province { get; set; } = string.Empty;
public string UniqueCode { get; set; } = string.Empty;
public string Address { get; set; }