31 lines
1.0 KiB
C#
31 lines
1.0 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.Reports
|
|
{
|
|
public class CatchUpCallReport
|
|
{
|
|
[Key]
|
|
public Guid CatchUpCallId { get; set; }
|
|
public Guid MRRawPlanId { get; set; }
|
|
public Guid? MRPlanDetailId { get; set; }
|
|
public byte? VisitCount { get; set; }
|
|
public DateOnly? ActualCallDate { get; set; }
|
|
public DateTime? StartTime { get; set; }
|
|
public DateTime? EndTime { get; set; }
|
|
public string? Longitude { get; set; }
|
|
public string? Latitude { get; set; }
|
|
public string? Location { get; set; }
|
|
public string? MedRepName { get; set; }
|
|
public string? DoctorName { get; set; }
|
|
public string? Company { get; set; }
|
|
public string? MissedReason { get; set; }
|
|
public DateOnly OriginalCallDate { get; set; }
|
|
public DateOnly CatchUpCallDate { get; set; }
|
|
}
|
|
}
|