30 lines
790 B
C#
30 lines
790 B
C#
using System;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Erp.Platform.Intranet;
|
|
|
|
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; }
|
|
|
|
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; }
|
|
}
|
|
|