ImAutoReportItem.cs 840 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImAutoReportItem
  6. {
  7. public string ItemId { get; set; } = null!;
  8. public string RptId { get; set; } = null!;
  9. public int RowNo { get; set; }
  10. public int ColNo { get; set; }
  11. public string ItemType { get; set; } = null!;
  12. public string DataType { get; set; } = null!;
  13. public string? DataId { get; set; }
  14. public string? DataName { get; set; }
  15. public string? Time1 { get; set; }
  16. public string? Time2 { get; set; }
  17. public string? TimeCell { get; set; }
  18. public string? Unit { get; set; }
  19. public string ShowUnit { get; set; } = null!;
  20. public virtual ImAutoReport Rpt { get; set; } = null!;
  21. }
  22. }