GeneralViewResults.java 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package com.huaxu.dto.generalView;
  2. import io.swagger.annotations.Api;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. import java.io.Serializable;
  6. import java.util.List;
  7. /**
  8. * @description
  9. * @auto wangli
  10. * @data 2021/1/6 16:49
  11. */
  12. @Api("生成调度中心概览数据")
  13. @Data
  14. public class GeneralViewResults implements Serializable {
  15. private static final long serialVersionUID = 452556952461741933L;
  16. @ApiModelProperty("近30天水量")
  17. List<DeviceWaterSupply> deviceWaterSupplies;
  18. @ApiModelProperty("供水详情数据")
  19. DeviceWaterAmount deviceWaterAmount;
  20. @ApiModelProperty("实时报警信息")
  21. List<SceneAlarm> sceneAlarms;
  22. @ApiModelProperty("管网水质情况")
  23. List<SceneNormalRate> SceneNormalRates;
  24. @ApiModelProperty("压力分布区间")
  25. SceneWaterPressure sceneWaterPressure;
  26. @ApiModelProperty("水量排行")
  27. List<SceneWaterAmount> sceneWaterAmounts;
  28. @ApiModelProperty("对比曲线图")
  29. List<WaterSupplyChart> waterSupplyCharts;
  30. }