src/main/kotlin/com/flightfeather/uav/domain/entity/Mission.java
@@ -63,6 +63,8 @@ @Column(name = "pollution_degree") private String pollutionDegree; private Integer aqi; /** * @return mission_code */ @@ -312,4 +314,18 @@ public void setPollutionDegree(String pollutionDegree) { this.pollutionDegree = pollutionDegree == null ? null : pollutionDegree.trim(); } /** * @return aqi */ public Integer getAqi() { return aqi; } /** * @param aqi */ public void setAqi(Integer aqi) { this.aqi = aqi; } }