123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- package com.bizmatics.model.vo;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- import java.io.Serializable;
- import java.time.LocalDateTime;
- /**
- * <p>
- *
- * </p>
- *
- * @author ya
- * @since 2022-03-07
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- public class HookupComponentBasicsVo implements Serializable {
- /**
- * 类别
- */
- private Integer sort;
- /**
- * 标题
- */
- private String title;
- /**
- * 内部类型
- */
- private String type;
- /**
- * 类型名称
- */
- @TableField("typeName")
- private String typeName;
- /**
- * 元器件颜色
- */
- @TableField("svgColor")
- private String svgColor;
- /**
- * 元器件X坐标
- */
- @TableField("svgPositionX")
- private Integer svgPositionX;
- /**
- * 元器件Y坐标
- */
- @TableField("svgPositionY")
- private Integer svgPositionY;
- /**
- * 大小
- */
- private Integer size;
- /**
- * 高度
- */
- private Integer height;
- /**
- * 宽度
- */
- private Integer width;
- /**
- * 字体大小
- */
- @TableField("fontSize")
- private Integer fontSize;
- /**
- * 元器件描述
- */
- @TableField("svgText")
- private String svgText;
- /**
- * 角度
- */
- private Integer angle;
- /**
- * 表行数
- */
- @TableField("tableRowCount")
- private Integer tableRowCount;
- /**
- * 表列数
- */
- @TableField("tableColCount")
- private Integer tableColCount;
- /**
- * 表数据
- */
- private Object tableData;
- private Object elementBool;
- /**
- * 所属站点ID
- */
- private Integer siteId;
- /**
- * 所属设备ID
- */
- private Integer deviceId;
- /**
- * 主表id
- */
- private Integer hookupId;
- /**
- * 所属变量ID
- */
- private Integer variableId;
- }
|