ImAutoReport.cs 721 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImAutoReport
  6. {
  7. public ImAutoReport()
  8. {
  9. ImAutoReportItems = new HashSet<ImAutoReportItem>();
  10. }
  11. public string RptId { get; set; } = null!;
  12. public string RptName { get; set; } = null!;
  13. public string RptType { get; set; } = null!;
  14. public string? TempFileObjId { get; set; }
  15. public string? SavePath { get; set; }
  16. public string State { get; set; } = null!;
  17. public DateTime CreateTime { get; set; }
  18. public virtual ICollection<ImAutoReportItem> ImAutoReportItems { get; set; }
  19. }
  20. }