IaVModule.cs 755 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class IaVModule
  6. {
  7. public string ModuleId { get; set; } = null!;
  8. public string ModuleName { get; set; } = null!;
  9. public string DirId { get; set; } = null!;
  10. public string ModuleType { get; set; } = null!;
  11. public string FuncId { get; set; } = null!;
  12. public string? ImgName { get; set; }
  13. public int? SeqNo { get; set; }
  14. public string State { get; set; } = null!;
  15. public string DirName { get; set; } = null!;
  16. public int? DirSeqNo { get; set; }
  17. public string? FuncName { get; set; }
  18. public string? FuncType { get; set; }
  19. }
  20. }