ImGlyph.cs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImGlyph
  6. {
  7. public ImGlyph()
  8. {
  9. ImGlyphHots = new HashSet<ImGlyphHot>();
  10. }
  11. public string Id { get; set; } = null!;
  12. public string? ParentId { get; set; }
  13. public string DiagId { get; set; } = null!;
  14. public int GlyphType { get; set; }
  15. public double? Left { get; set; }
  16. public double? Top { get; set; }
  17. public double? Right { get; set; }
  18. public double? Bottom { get; set; }
  19. public short? LineWidth { get; set; }
  20. public int? LineColor { get; set; }
  21. public int? BkColor { get; set; }
  22. public short? LineStyle { get; set; }
  23. public short? Transparent { get; set; }
  24. public short? Direction { get; set; }
  25. public string? Name { get; set; }
  26. public short? ZOrder { get; set; }
  27. public short? State { get; set; }
  28. public string? LinkDiagId { get; set; }
  29. public int? PwrOnColor { get; set; }
  30. public int? PwrOffColor { get; set; }
  31. public int? SwitchOnColor { get; set; }
  32. public int? SwitchOffColor { get; set; }
  33. public int? SwitchUnknownColor { get; set; }
  34. public int? Locked { get; set; }
  35. public double? PwrOnThreshold { get; set; }
  36. public string? Reserved1 { get; set; }
  37. public string? Reserved2 { get; set; }
  38. public virtual Im3posSwitch? Im3posSwitch { get; set; }
  39. public virtual ImDataViewer? ImDataViewer { get; set; }
  40. public virtual ImDiagram? ImDiagram { get; set; }
  41. public virtual ImGlyphDevDatum? ImGlyphDevDatum { get; set; }
  42. public virtual ImGrid? ImGrid { get; set; }
  43. public virtual ImLabel? ImLabel { get; set; }
  44. public virtual ICollection<ImGlyphHot> ImGlyphHots { get; set; }
  45. }
  46. }