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.

24 lines
520 B

2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Shentun.Peis.ReportFormatTemplates
  5. {
  6. public class UpdateReportFormatTemplateDto
  7. {
  8. public string ReportFormatId { get; set; }
  9. public string DisplayName { get; set; }
  10. public char TemplateFileType { get; set; }
  11. public string TemplateFile { get; set; }
  12. public string DataSetJson { get; set; }
  13. public char IsSystem { get; set; }
  14. public char IsDefault { get; set; }
  15. }
  16. }