123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- package com.bizmatics.model.vo;
- import com.baomidou.mybatisplus.annotation.IdType;
- 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-06-01
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- public class BulletinCruxConfigVo implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 关键数据配置表ID
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 数据名称
- */
- private String dataName;
- /**
- * 数据类型
- */
- private Integer dataType;
- /**
- * 数据取值
- */
- private Integer dataValue;
- /**
- * 背景颜色
- */
- private String backgroundColor;
- /**
- * 数据名称颜色
- */
- private String dataNameColor;
- /**
- * 数据值颜色
- */
- private String dataValueColor;
- /**
- * 数据名称字体大小
- */
- private String dataNameFont;
- /**
- * 数据值字体大小
- */
- private String dataValueFont;
- /**
- * 图标路径
- */
- private String iconPath;
- /**
- * 创建人
- */
- private String createBy;
- /**
- * 创建时间
- */
- private LocalDateTime createTime;
- /**
- * 站点id
- */
- private Integer siteId;
- /**
- * 变量ID
- */
- private Integer variableId;
- /**
- * 计算周期:1本日 2本月 3本年 4实时值
- */
- private Integer cycle;
- /**
- * 计算方法:1平均 2最大 3最小
- */
- private Integer method;
- /**
- * 保留小数
- */
- private Integer digit;
- private Object textValue;
- private String i;
- /**
- * X轴坐标
- */
- private Integer coordinatex;
- /**
- * Y轴坐标
- */
- private Integer coordinatey;
- /**
- * 宽
- */
- private Integer wide;
- /**
- * 高
- */
- private Integer high;
- /**
- * 历史数据模块id
- */
- private Integer historicalId;
- /**
- * 监控设备id
- */
- private Integer deviceId;
- /**
- * 统计图颜色
- */
- private String graphicColor;
- /**
- * 1折线图 2柱形图
- */
- private Integer graphicType;
- /**
- * 显示名称
- */
- private String displayName;
- /**
- * 变量配置
- */
- private Object relationData;
- /**
- * 模板类型
- */
- private String colorType;
- /**
- * 列表标题
- */
- private String listTitle;
- /**
- * 告警类型
- */
- private String alarmType;
- private Integer x;
- private Integer y;
- private Integer w;
- private Integer h;
- /**
- * 数据标题
- */
- private String dataTitle;
- /**
- * 查询周期
- */
- private Integer queryCycle;
- /**
- * 查询类型
- */
- private Integer queryType;
- /**
- * 最大值是否标注
- */
- private Integer maxDimension;
- /**
- * 最小值是否标注
- */
- private Integer minDimension;
- /**
- * 平均值是否标注
- */
- private Integer meanDimension;
- /**
- * 纵轴自适应
- */
- private Integer lonAdaptation;
- }
|