TbGlyph.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class TbGlyph
  6. {
  7. public TbGlyph()
  8. {
  9. TbGlyphHots = new HashSet<TbGlyphHot>();
  10. TbGlyphLinkObjs = new HashSet<TbGlyphLinkObj>();
  11. }
  12. public string Id { get; set; } = null!;
  13. public string? ParentId { get; set; }
  14. public string DiagId { get; set; } = null!;
  15. public int GlyphType { get; set; }
  16. public double? Left { get; set; }
  17. public double? Top { get; set; }
  18. public double? Right { get; set; }
  19. public double? Bottom { get; set; }
  20. public short? LineWidth { get; set; }
  21. public int? LineColor { get; set; }
  22. public int? BkColor { get; set; }
  23. public short? LineStyle { get; set; }
  24. public short? Transparent { get; set; }
  25. public short? Direction { get; set; }
  26. public string? Name { get; set; }
  27. public short? ZOrder { get; set; }
  28. public short? State { get; set; }
  29. public string? BusiObjId { get; set; }
  30. public string? Reserved1 { get; set; }
  31. public string? Reserved2 { get; set; }
  32. public string? BusiObjName { get; set; }
  33. public short? Locked { get; set; }
  34. public short? Hide { get; set; }
  35. public virtual TbDataViewer? TbDataViewer { get; set; }
  36. public virtual TbDiagram? TbDiagram { get; set; }
  37. public virtual TbGrid? TbGrid { get; set; }
  38. public virtual TbLabel? TbLabel { get; set; }
  39. public virtual ICollection<TbGlyphHot> TbGlyphHots { get; set; }
  40. public virtual ICollection<TbGlyphLinkObj> TbGlyphLinkObjs { get; set; }
  41. }
  42. }