WindTowerDataChildTable.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. package com.jiayue.biz.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import com.jiayue.common.annotation.Excel;
  7. import lombok.Data;
  8. import lombok.NoArgsConstructor;
  9. import lombok.experimental.Accessors;
  10. import java.io.Serializable;
  11. import java.math.BigDecimal;
  12. import java.util.Date;
  13. /**
  14. * 测风塔数据子表
  15. *
  16. * @author whc
  17. * @date 2022-08-02
  18. */
  19. @Data
  20. @NoArgsConstructor
  21. @Accessors(chain = true)
  22. @TableName("wind_tower_data_child_table")
  23. public class WindTowerDataChildTable implements Serializable {
  24. private static final long serialVersionUID = 1L;
  25. /**
  26. * 主键ID
  27. */
  28. @TableId(type = IdType.ASSIGN_UUID)
  29. private String id;
  30. /**
  31. * 父表ID
  32. */
  33. @Excel(name = "父表ID")
  34. private String parentId;
  35. /**
  36. * 层高
  37. */
  38. @Excel(name = "层高")
  39. private String layerHeight;
  40. /**
  41. * 风速瞬时值(m/s)
  42. */
  43. @Excel(name = "风速瞬时值", readConverterExp = "m=/s")
  44. private BigDecimal wsInst;
  45. /**
  46. * 风速最大值(m/s)
  47. */
  48. @Excel(name = "风速最大值", readConverterExp = "m=/s")
  49. private BigDecimal wsMax;
  50. /**
  51. * 风速最小值(m/s)
  52. */
  53. @Excel(name = "风速最小值", readConverterExp = "m=/s")
  54. private BigDecimal wsMin;
  55. /**
  56. * 风速平均值(m/s)
  57. */
  58. @Excel(name = "风速平均值", readConverterExp = "m=/s")
  59. private BigDecimal wsAve;
  60. /**
  61. * 风速标准偏差(m/s)
  62. */
  63. @Excel(name = "风速标准偏差", readConverterExp = "m=/s")
  64. private BigDecimal wsSta;
  65. /**
  66. * 风速阵风(m/s)
  67. */
  68. @Excel(name = "风速阵风", readConverterExp = "m=/s")
  69. private BigDecimal wsGust;
  70. /**
  71. * 风速极大值(m/s)
  72. */
  73. @Excel(name = "风速极大值", readConverterExp = "m=/s")
  74. private BigDecimal wsGreat;
  75. /**
  76. * 向瞬时值(°)
  77. */
  78. @Excel(name = "风向瞬时值", readConverterExp = "°=")
  79. private BigDecimal wdInst;
  80. /**
  81. * 风向最大值(°)
  82. */
  83. @Excel(name = "风向最大值", readConverterExp = "°=")
  84. private BigDecimal wdMax;
  85. /**
  86. * 风向最小值(°)
  87. */
  88. @Excel(name = "风向最小值", readConverterExp = "°=")
  89. private BigDecimal wdMin;
  90. /**
  91. * 风向平均值(°)
  92. */
  93. @Excel(name = "风向平均值", readConverterExp = "°=")
  94. private BigDecimal wdAve;
  95. /**
  96. * 风向标准偏差(°)
  97. */
  98. @Excel(name = "风向标准偏差", readConverterExp = "°=")
  99. private BigDecimal wdSta;
  100. /**
  101. * 风向实时值(°)
  102. */
  103. @Excel(name = "风向实时值", readConverterExp = "°=")
  104. private BigDecimal wdNow;
  105. /**
  106. * 最大风速时风向(°)
  107. */
  108. @Excel(name = "最大风速时风向", readConverterExp = "°=")
  109. private BigDecimal wdOnWs;
  110. }