24 lines
727 B
C#
24 lines
727 B
C#
using System;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Erp.Platform.Intranet;
|
|
|
|
public class VisitorDto : FullAuditedEntityDto<Guid>
|
|
{
|
|
public Guid? TenantId { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
public string CompanyName { get; set; }
|
|
public string Email { get; set; }
|
|
public string PhoneNumber { get; set; }
|
|
public string Purpose { get; set; }
|
|
public DateTime VisitDate { get; set; }
|
|
public DateTime? CheckIn { get; set; }
|
|
public DateTime? CheckOut { get; set; }
|
|
public Guid? EmployeeId { get; set; }
|
|
public EmployeeDto Employee { get; set; }
|
|
public string Status { get; set; }
|
|
public string BadgeNumber { get; set; }
|
|
public string Photo { get; set; }
|
|
}
|
|
|