From b7b520bfe8b35683112284861f0dca8e645cbd56 Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期二, 31 十二月 2024 10:22:40 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/hc-satellite-data-import-1227_2' --- src/main/kotlin/com/flightfeather/uav/domain/entity/GridAodDetail.java | 92 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 92 insertions(+), 0 deletions(-) diff --git a/src/main/kotlin/com/flightfeather/uav/domain/entity/GridAodDetail.java b/src/main/kotlin/com/flightfeather/uav/domain/entity/GridAodDetail.java new file mode 100644 index 0000000..15b16ad --- /dev/null +++ b/src/main/kotlin/com/flightfeather/uav/domain/entity/GridAodDetail.java @@ -0,0 +1,92 @@ +package com.flightfeather.uav.domain.entity; + +import javax.persistence.Column; +import javax.persistence.Id; +import javax.persistence.Table; + +@Table(name = "grid_aod_detail") +public class GridAodDetail { + @Id + private Integer id; + + @Column(name = "aod_id") + private Integer aodId; + + @Column(name = "group_id") + private Integer groupId; + + @Column(name = "cell_id") + private Integer cellId; + + private Float aod; + + /** + * @return id + */ + public Integer getId() { + return id; + } + + /** + * @param id + */ + public void setId(Integer id) { + this.id = id; + } + + /** + * @return aod_id + */ + public Integer getAodId() { + return aodId; + } + + /** + * @param aodId + */ + public void setAodId(Integer aodId) { + this.aodId = aodId; + } + + /** + * @return group_id + */ + public Integer getGroupId() { + return groupId; + } + + /** + * @param groupId + */ + public void setGroupId(Integer groupId) { + this.groupId = groupId; + } + + /** + * @return cell_id + */ + public Integer getCellId() { + return cellId; + } + + /** + * @param cellId + */ + public void setCellId(Integer cellId) { + this.cellId = cellId; + } + + /** + * @return aod + */ + public Float getAod() { + return aod; + } + + /** + * @param aod + */ + public void setAod(Float aod) { + this.aod = aod; + } +} \ No newline at end of file -- Gitblit v1.9.3