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 ExpenseDto : FullAuditedEntityDto<Guid>
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid? TenantId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public Guid? EmployeeId { get; set; }
|
|
|
|
|
|
public EmployeeDto Employee { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string Category { get; set; }
|
|
|
|
|
|
public decimal Amount { get; set; }
|
|
|
|
|
|
|
2025-11-24 19:04:43 +00:00
|
|
|
|
public string Currency { get; set; }
|
2025-10-29 10:20:21 +00:00
|
|
|
|
|
|
|
|
|
|
public DateTime RequestDate { get; set; }
|
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
public string Project { get; set; }
|
|
|
|
|
|
public string Status { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public Guid? ApproverId { get; set; }
|
|
|
|
|
|
public EmployeeDto Approver { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime? ApprovalDate { get; set; }
|
|
|
|
|
|
public string RejectionReason { get; set; }
|
|
|
|
|
|
public string Notes { get; set; }
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|