erp-platform/api/src/Erp.Platform.Application.Contracts/Reports/ReportGeneratedDto.cs

28 lines
647 B
C#
Raw Normal View History

2025-11-11 19:49:52 +00:00
using System;
2025-08-15 09:19:20 +00:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Volo.Abp.Application.Dtos;
2025-11-11 19:49:52 +00:00
namespace Erp.Platform.Reports
2025-08-15 09:19:20 +00:00
{
2025-10-08 11:31:29 +00:00
public class ReportGeneratedDto : FullAuditedEntityDto<Guid>
2025-08-15 09:19:20 +00:00
{
public Guid? TemplateId { get; set; }
[Required]
public string TemplateName { get; set; }
[Required]
public string GeneratedContent { get; set; }
public Dictionary<string, string> Parameters { get; set; }
2025-10-08 11:31:29 +00:00
public ReportTemplateDto ReportTemplate { get; set; }
public ReportGeneratedDto()
2025-08-15 09:19:20 +00:00
{
2025-08-15 12:21:22 +00:00
Parameters = [];
2025-08-15 09:19:20 +00:00
}
}
}
2025-11-11 19:49:52 +00:00