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/GridAod.java | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 59 insertions(+), 0 deletions(-) diff --git a/src/main/kotlin/com/flightfeather/uav/domain/entity/GridAod.java b/src/main/kotlin/com/flightfeather/uav/domain/entity/GridAod.java new file mode 100644 index 0000000..de6d5de --- /dev/null +++ b/src/main/kotlin/com/flightfeather/uav/domain/entity/GridAod.java @@ -0,0 +1,59 @@ +package com.flightfeather.uav.domain.entity; + +import javax.persistence.*; +import java.util.Date; + +@Table(name = "grid_aod") +public class GridAod { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + + @Column(name = "group_id") + private Integer groupId; + + @Column(name = "data_time") + private Date dataTime; + + /** + * @return id + */ + public Integer getId() { + return id; + } + + /** + * @param id + */ + public void setId(Integer id) { + this.id = id; + } + + /** + * @return group_id + */ + public Integer getGroupId() { + return groupId; + } + + /** + * @param groupId + */ + public void setGroupId(Integer groupId) { + this.groupId = groupId; + } + + /** + * @return data_time + */ + public Date getDataTime() { + return dataTime; + } + + /** + * @param dataTime + */ + public void setDataTime(Date dataTime) { + this.dataTime = dataTime; + } +} \ No newline at end of file -- Gitblit v1.9.3