PowerPointData.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package com.gyee.power.fitting.model.custom;
  2. import com.gyee.power.fitting.model.anno.Desc;
  3. import lombok.Data;
  4. import java.math.BigDecimal;
  5. import java.math.RoundingMode;
  6. import java.text.DecimalFormat;
  7. /**
  8. * 数据准备的测点
  9. * remark 0:表示该字段不在前端显示 1:表示该字段在前端显示
  10. */
  11. @Data
  12. public class PowerPointData {
  13. public PowerPointData(){}
  14. public PowerPointData(String[] str, boolean isFilter){
  15. DecimalFormat df = new DecimalFormat("0.00");
  16. this.time = str[0];
  17. this.power = Double.valueOf(df.format(Double.valueOf(str[1])));
  18. this.speed = Double.valueOf(df.format(Double.valueOf(str[2])));
  19. this.rr = Double.valueOf(df.format(Double.valueOf(str[3])));
  20. this.mxzt = Double.valueOf(str[4]).intValue();
  21. this.dl = Double.valueOf(df.format(Double.valueOf(str[5])));
  22. this.qfzt = Double.valueOf(str[6]).intValue();
  23. this.fx = Double.valueOf(df.format(Double.valueOf(str[7])));
  24. this.dfwc = Double.valueOf(df.format(Double.valueOf(str[8])));
  25. this.angle = Double.valueOf(df.format(Double.valueOf(str[9])));
  26. this.hjwd = Double.valueOf(df.format(Double.valueOf(str[10])));
  27. this.yp1 = Double.valueOf(df.format(Double.valueOf(str[11])));
  28. this.yp2 = Double.valueOf(df.format(Double.valueOf(str[12])));
  29. this.yp3 = Double.valueOf(df.format(Double.valueOf(str[13])));
  30. if (isFilter){
  31. BigDecimal bd = new BigDecimal(str[str.length - 1]);
  32. bd = bd.setScale(2, RoundingMode.HALF_UP);
  33. this.filter = bd.intValue();
  34. }
  35. }
  36. //时间
  37. @Desc(des = "时间", remark = "1")
  38. private String time = "1970-01-01 00:00:00";
  39. //功率 AI114
  40. @Desc(des = "功率", uniformCode = "AI114", remark = "1")
  41. private double power = 0;
  42. //风速 AI066
  43. @Desc(des = "风速", uniformCode = "AI066", remark = "1")
  44. private double speed = 0;
  45. //转速 AI060
  46. @Desc(des = "转速", uniformCode = "AI060", remark = "1")
  47. private double rr = 0;
  48. //明细状态
  49. // 0-待机 1-手动停机 2-正常发电 3-缺陷降出力 4-限电降出力 5-限电停机 6-故障停机
  50. // 7-场内受累停机 8-检修停机 9-场内受累检修 10-电网受累 11-环境受累 12-风机离线 MXZT
  51. @Desc(des = "风机状态", uniformCode = "MXZT", remark = "1")
  52. private int mxzt = 0;
  53. //电量 RFDL
  54. @Desc(des = "电量", uniformCode = "RFDL", remark = "1")
  55. private double dl = 0;
  56. //欠发状态 SSQFZT
  57. @Desc(des = "欠发状态", uniformCode = "RQFDL", remark = "1")
  58. private int qfzt = 0;
  59. //风向 AI067
  60. @Desc(des = "风向", uniformCode = "AI067", remark = "1")
  61. private double fx = 0;
  62. //对风误差
  63. @Desc(des = "对风误差", uniformCode = "AI073", remark = "1")
  64. private double dfwc = 0;
  65. //偏航角度 AI073
  66. @Desc(des = "偏航角度", uniformCode = "AI028", remark = "1")
  67. private double angle = 0;
  68. /**
  69. * AI072
  70. */
  71. @Desc(des = "环境温度", uniformCode = "AI072", remark = "1")
  72. private double hjwd = 0;
  73. @Desc(des = "叶片1", uniformCode = "AI082", remark = "1")
  74. private double yp1 = 0;
  75. @Desc(des = "叶片2", uniformCode = "AI083", remark = "1")
  76. private double yp2 = 0;
  77. @Desc(des = "叶片3", uniformCode = "AI084", remark = "1")
  78. private double yp3 = 0;
  79. //是否过滤 0:不过滤 1:过滤
  80. @Desc(des = "筛选", remark = "0")
  81. private int filter = 0;
  82. private String wtId;
  83. @Override
  84. public String toString() {
  85. return "PowerPointData{" +
  86. "time='" + time + '\'' +
  87. ", power=" + power +
  88. ", speed=" + speed +
  89. ", rr=" + rr +
  90. ", mxzt=" + mxzt +
  91. ", dl=" + dl +
  92. ", qfzt=" + qfzt +
  93. ", fx=" + fx +
  94. ", dfwc=" + dfwc +
  95. ", angle=" + angle +
  96. ", hjwd=" + hjwd +
  97. ", filter=" + filter +
  98. ", wtId='" + wtId + '\'' +
  99. '}';
  100. }
  101. }