You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
852 B

3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Volo.Abp.Application.Dtos;
  5. namespace Shentun.Peis.ReportFormats
  6. {
  7. public class ReportFormatDto : AuditedEntityDto<string>
  8. {
  9. /// <summary>
  10. /// 报表名称
  11. /// </summary>
  12. public string DisplayName { get; set; }
  13. /// <summary>
  14. /// 报表名称
  15. /// </summary>
  16. public char IsDefault { get; set; }
  17. public bool IsDefaulted { get; set; }
  18. /// <summary>
  19. /// 报表ID
  20. /// </summary>
  21. public string ReportId { get; set; }
  22. /// <summary>
  23. /// 创建者
  24. /// </summary>
  25. public string CreatorName { get; set; }
  26. /// <summary>
  27. /// 最后修改者
  28. /// </summary>
  29. public string LastModifierName { get; set; }
  30. }
  31. }