DeviceAttributeExportVO.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.bizmatics.service.vo;
  2. import cn.afterturn.easypoi.excel.annotation.Excel;
  3. import com.baomidou.mybatisplus.annotation.IdType;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import lombok.Data;
  6. import java.util.Date;
  7. /**
  8. * @author yq
  9. * @date 2021/7/13 16:21
  10. */
  11. @Data
  12. public class DeviceAttributeExportVO {
  13. private Integer id;
  14. /**
  15. * 监控设备编号
  16. */
  17. @Excel(name = "监控设备编号", height = 6, width = 20)
  18. private String monitorDeviceCode;
  19. /**
  20. * 监控设备名称
  21. */
  22. @Excel(name = "监控设备名称", height = 6, width = 20)
  23. private String monitorDeviceName;
  24. /**
  25. * 回路表计地址
  26. */
  27. @Excel(name = "回路表计地址", height = 6, width = 20)
  28. private Integer loopMeterAddress;
  29. /**
  30. * 额定电压(kv)
  31. */
  32. @Excel(name = "额定电压(kv)", height = 6, width = 20)
  33. private Double ratedVoltage;
  34. /**
  35. * 额定电流(A)
  36. */
  37. @Excel(name = "额定电流(A)", height = 6, width = 20)
  38. private Double ratedCurrent;
  39. /**
  40. * 电流负载率门限
  41. */
  42. @Excel(name = "电流负载率门限", height = 6, width = 20)
  43. private Double currentLoadRate;
  44. /**
  45. * 电能质量分析
  46. */
  47. @Excel(name = "电能质量分析", height = 6, width = 20)
  48. private String qualityAnalysis;
  49. }