erp-platform/api/src/Erp.Platform.Application.Contracts/Intranet/VisitorDto.cs

25 lines
731 B
C#
Raw Normal View History

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; }
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