TbExportTemplate.cs 885 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class TbExportTemplate
  6. {
  7. public TbExportTemplate()
  8. {
  9. TbExportTemplateCols = new HashSet<TbExportTemplateCol>();
  10. }
  11. public string TempId { get; set; } = null!;
  12. public string TempFileName { get; set; } = null!;
  13. public string? RelateDir { get; set; }
  14. public int? StartRowNo { get; set; }
  15. public int? StartColNo { get; set; }
  16. public string? DefFileName { get; set; }
  17. public string? DataTag4Filter { get; set; }
  18. public string? FilterCond { get; set; }
  19. public string? FilterValue { get; set; }
  20. public string? FilterValueType { get; set; }
  21. public virtual ICollection<TbExportTemplateCol> TbExportTemplateCols { get; set; }
  22. }
  23. }