ImPuWaveChl.cs 571 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImPuWaveChl
  6. {
  7. public string Id { get; set; } = null!;
  8. public int PuctgyCode { get; set; }
  9. public string ChlType { get; set; } = null!;
  10. public int ChlNum { get; set; }
  11. public string ChlName { get; set; } = null!;
  12. public string? ChlUnit1 { get; set; }
  13. public string? ChlUnit2 { get; set; }
  14. public virtual ImPuCtgy PuctgyCodeNavigation { get; set; } = null!;
  15. }
  16. }