12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime;
- using System.Text;
- using System.Threading.Tasks;
- namespace Flyinsono.DBCopy.Tool.Entities
- {
- internal class Organizations
- {
- public string Id { get; set; }
- public DateTime CreateTime { get; set; }
- public DateTime UpdateTime { get; set; }
- public bool IsDeleted { get; set; }
- public string Name { get; set; }
- public string Description { get; set; }
- public AdminInfo CreateAdmin { get; set; }
- public CountryInfo Country { get; set; }
- public CountryInfo Province { get; set; }
- public CountryInfo City { get; set; }
- public ICollection<CountryInfo> DiagnosisPackages { get; set; }
- public ICollection<TerminalInfo> Terminals { get; set; }
- public virtual ICollection<AdminInfo> Owners { get; set; }
- public int MaxWorkOrderNumber { get; set; }
- public ICollection<OrganizationInfo> ParentOrganizations { get; set; }
- public ICollection<OrganizationInfo> ChildOrganizations { get; set; }
- public string DefaultTemplateId { get; set; }
- public ICollection<string> ReportTemplateIds { get; set; }
- }
- internal class CountryInfo
- {
- public string Description { get; set; }
- public string Id { get; set; }
- public string Name { get; set; }
- }
- }
|