DeviceAnalogVariableList.java 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package com.bizmatics.model;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import java.time.LocalDateTime;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. import lombok.Data;
  8. import lombok.EqualsAndHashCode;
  9. import lombok.experimental.Accessors;
  10. /**
  11. * <p>
  12. * 设备变量列表
  13. * </p>
  14. *
  15. * @author ya
  16. * @since 2021-09-24
  17. */
  18. @Data
  19. @EqualsAndHashCode(callSuper = false)
  20. @Accessors(chain = true)
  21. public class DeviceAnalogVariableList implements Serializable {
  22. private static final long serialVersionUID=1L;
  23. /**
  24. * 变量列表id
  25. */
  26. @TableId(value = "id", type = IdType.AUTO)
  27. private Integer id;
  28. /**
  29. * 设备编号
  30. */
  31. private String deviceCode;
  32. /**
  33. * 变量名
  34. */
  35. private String variableName;
  36. /**
  37. * 变量编码
  38. */
  39. private String variableCoding;
  40. /**
  41. * 监控设备
  42. */
  43. private Integer monitoringEquipment;
  44. /**
  45. * 通信设备
  46. */
  47. private Integer communicationEquipment;
  48. /**
  49. * 数据地址
  50. */
  51. private String dataAddress;
  52. /**
  53. * 数据类型
  54. */
  55. private String dataType;
  56. /**
  57. * 系数
  58. */
  59. private Float coefficient;
  60. /**
  61. * 存盘周期(分钟)
  62. */
  63. private Integer saveCycle;
  64. /**
  65. * 创建时间
  66. */
  67. private Date createTime;
  68. /**
  69. * 创建人
  70. */
  71. private String creator;
  72. /**
  73. * 1:启用、0:不启用
  74. */
  75. private Integer status;
  76. /**
  77. * 1.模拟量 2.状态量 3.参数量
  78. */
  79. private Integer dataArea;
  80. }