ImReportCfg.cs 783 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImReportCfg
  6. {
  7. public ImReportCfg()
  8. {
  9. ImReportCfgData = new HashSet<ImReportCfgDatum>();
  10. }
  11. public string Id { get; set; } = null!;
  12. public string RptName { get; set; } = null!;
  13. public string RptType { get; set; } = null!;
  14. public DateTime CreateTime { get; set; }
  15. public string? TemplateName { get; set; }
  16. public int? ExpStartRow { get; set; }
  17. public int? ExpStartCol { get; set; }
  18. public virtual ImReportType RptTypeNavigation { get; set; } = null!;
  19. public virtual ICollection<ImReportCfgDatum> ImReportCfgData { get; set; }
  20. }
  21. }