LSFE/LSFE.Infrastructure/Entities/Planning/DoctorById.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.Planning
{
public class DoctorById
{
[Key]
public string? MRRawPlanId { get; set; }
public Guid MRPlanDetailId { get; set; }
public int DoctorId { get; set; }
public string? MRFullName { get; set; }
public string? InstitutionName { get; set; }
public Guid MRPlanHeaderId { get; set; }
public string? MRPlanDate { get; set; }
public string? DivisionName { get; set; }
public int DivisionId { get; set; }
public string? FirstName { get; set; }
public string? MiddleInitial { get; set; }
public string? LastName { get; set; }
public string? TerritoryName { get; set; }
public string? SpecializationName { get; set; }
public bool IsLiterature { get; set; }
public bool IsApproved { get; set; }
public byte MaxVisit { get; set; }
public string? Status { get; set; }
}
}