2025-11-11 19:49:52 +00:00
|
|
|
|
using System;
|
2025-10-29 10:20:21 +00:00
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
|
|
|
2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Platform.Intranet;
|
2025-10-29 10:20:21 +00:00
|
|
|
|
|
|
|
|
|
|
public class VisitorDto : FullAuditedEntityDto<Guid>
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid? TenantId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string FullName { get; set; }
|
|
|
|
|
|
public string CompanyName { get; set; }
|
|
|
|
|
|
public string Email { get; set; }
|
2025-11-11 11:50:54 +00:00
|
|
|
|
public string PhoneNumber { get; set; }
|
2025-10-29 10:20:21 +00:00
|
|
|
|
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; }
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|