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

31 lines
790 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 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; }
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