ImSanBiZhiFaultDefine.cs 479 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImSanBiZhiFaultDefine
  6. {
  7. public string Id { get; set; } = null!;
  8. public int C2h2C2h4 { get; set; }
  9. public int Ch4H2 { get; set; }
  10. public int C2h4C2h6 { get; set; }
  11. public int FltTypeCode { get; set; }
  12. public virtual ImSanBiZhiFaultType FltTypeCodeNavigation { get; set; } = null!;
  13. }
  14. }