HookupComponentBasicsVo.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package com.bizmatics.model.vo;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. import lombok.experimental.Accessors;
  8. import java.io.Serializable;
  9. import java.time.LocalDateTime;
  10. /**
  11. * <p>
  12. *
  13. * </p>
  14. *
  15. * @author ya
  16. * @since 2022-03-07
  17. */
  18. @Data
  19. @EqualsAndHashCode(callSuper = false)
  20. @Accessors(chain = true)
  21. public class HookupComponentBasicsVo implements Serializable {
  22. /**
  23. * 类别
  24. */
  25. private Integer sort;
  26. /**
  27. * 标题
  28. */
  29. private String title;
  30. /**
  31. * 内部类型
  32. */
  33. private String type;
  34. /**
  35. * 类型名称
  36. */
  37. @TableField("typeName")
  38. private String typeName;
  39. /**
  40. * 元器件颜色
  41. */
  42. @TableField("svgColor")
  43. private String svgColor;
  44. /**
  45. * 元器件X坐标
  46. */
  47. @TableField("svgPositionX")
  48. private Integer svgPositionX;
  49. /**
  50. * 元器件Y坐标
  51. */
  52. @TableField("svgPositionY")
  53. private Integer svgPositionY;
  54. /**
  55. * 大小
  56. */
  57. private Integer size;
  58. /**
  59. * 高度
  60. */
  61. private Integer height;
  62. /**
  63. * 宽度
  64. */
  65. private Integer width;
  66. /**
  67. * 字体大小
  68. */
  69. @TableField("fontSize")
  70. private Integer fontSize;
  71. /**
  72. * 元器件描述
  73. */
  74. @TableField("svgText")
  75. private String svgText;
  76. /**
  77. * 角度
  78. */
  79. private Integer angle;
  80. /**
  81. * 表行数
  82. */
  83. @TableField("tableRowCount")
  84. private Integer tableRowCount;
  85. /**
  86. * 表列数
  87. */
  88. @TableField("tableColCount")
  89. private Integer tableColCount;
  90. /**
  91. * 表数据
  92. */
  93. private Object tableData;
  94. private Object elementBool;
  95. /**
  96. * 所属站点ID
  97. */
  98. private Integer siteId;
  99. /**
  100. * 所属设备ID
  101. */
  102. private Integer deviceId;
  103. /**
  104. * 主表id
  105. */
  106. private Integer hookupId;
  107. /**
  108. * 所属变量ID
  109. */
  110. private Integer variableId;
  111. }