123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- package com.bizmatics.model;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import java.time.LocalDateTime;
- import com.baomidou.mybatisplus.annotation.TableField;
- import java.io.Serializable;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- /**
- * <p>
- *
- * </p>
- *
- * @author ya
- * @since 2022-03-07
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- public class HookupComponentBasics implements Serializable {
- private static final long serialVersionUID=1L;
- /**
- * 接线图元器件详细数据关联表ID
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 类别
- */
- private Integer sort;
- /**
- * 标题
- */
- private String title;
- /**
- * 内部类型
- */
- @TableField("innerType")
- private String innerType;
- /**
- * 类型名称
- */
- @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;
- /**
- * 表数据
- */
- @TableField("tableData")
- private String tableData;
- @TableField("elementBool")
- private String elementBool;
- /**
- * 所属站点ID
- */
- private Integer siteId;
- /**
- * 所属设备ID
- */
- private Integer deviceId;
- /**
- * 主表id
- */
- private Integer hookupId;
- /**
- * 所属变量ID
- */
- private Integer variableId;
- /**
- * 创建人
- */
- private String creator;
- /**
- * 创建时间
- */
- private LocalDateTime createTime;
- }
|