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.

35 lines
792 B

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