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

31 lines
1.0 KiB
C#

using LSFE.Infrastructure.Entities.Doctor;
using LSFE.Infrastructure.Entities.Maintenance;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.Infrastructure.Entities.Planning
{
public class DoctorWithPlan
{
[Key]
public int DoctorId { get; set; }
public string? MRFullName { get; set; }
public string? InstitutionName { get; set; }
public Guid MRPlanHeaderId { get; set; }
public Guid MRPlanDetailId { get; set; }
public string? MRPlanDate { get; set; }
public int TerritoryId { get; set; }
public string? TerritoryName { get; set; }
public string? FirstName { get; set; }
public string? MiddleInitial { get; set; }
public string? LastName { get; set; }
public string? SpecializationName { get; set; }
public byte MaxVisit { get; set; }
public string? Status { get; set; }
}
}