BulletinHistoricalRelation.java 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.bizmatics.model;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import java.io.Serializable;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. import lombok.experimental.Accessors;
  8. /**
  9. * <p>
  10. *
  11. * </p>
  12. *
  13. * @author ya
  14. * @since 2022-06-06
  15. */
  16. @Data
  17. @EqualsAndHashCode(callSuper = false)
  18. @Accessors(chain = true)
  19. public class BulletinHistoricalRelation implements Serializable {
  20. private static final long serialVersionUID=1L;
  21. /**
  22. * 历史数据关联表ID
  23. */
  24. @TableId(value = "id", type = IdType.AUTO)
  25. private Integer id;
  26. /**
  27. * 历史数据模块id
  28. */
  29. private Integer historicalId;
  30. /**
  31. * 监控设备id
  32. */
  33. private Integer deviceId;
  34. /**
  35. * 变量id
  36. */
  37. private Integer variableId;
  38. /**
  39. * 统计图颜色
  40. */
  41. private String graphicColor;
  42. /**
  43. * 1折线图 2柱形图
  44. */
  45. private Integer graphicType;
  46. /**
  47. * 显示名称
  48. */
  49. private String displayName;
  50. }