LSFE/LSFE.Infrastructure/Entities/Doctor/DoctorCoverageToday.cs
2026-07-30 10:31:04 +08:00

33 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.Infrastructure.Entities.Doctor
{
public class DoctorCoverageToday
{
[Key]
public int DoctorId { get; set; }
public Guid MRRawPlanId { get; set; }
public string? MiddleInitial { get; set; }
public string? LastName { get; set; }
public string? FirstName { get; set; }
public byte MaxVisit { get; set; }
public string? SpecializationName { get; set; }
public DateTime BirthDate { get; set; }
public string? EmailAddress { get; set; }
public string? LicenseNo { get; set; }
public string? PhoneNo { get; set; }
public int InstitutionId { get; set; }
public string? InstitutionName { get; set; }
public byte Status { get; set; }
public bool IsTerritorial { get; set; }
public string? Address { get; set; }
public string? DistrictName { get; set; }
public string? AreaName { get; set; }
}
}