From 27d341342925f11c19fb7a31da7050f5e9041319 Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期四, 19 十月 2023 17:52:29 +0800
Subject: [PATCH] 新增数据分析模块

---
 src/main/java/com/flightfeather/monitor/domain/ds1/entity/DustSiteData.java |  139 ++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 139 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/flightfeather/monitor/domain/ds1/entity/DustSiteData.java b/src/main/java/com/flightfeather/monitor/domain/ds1/entity/DustSiteData.java
new file mode 100644
index 0000000..5d07e6e
--- /dev/null
+++ b/src/main/java/com/flightfeather/monitor/domain/ds1/entity/DustSiteData.java
@@ -0,0 +1,139 @@
+package com.flightfeather.monitor.domain.ds1.entity;
+
+import java.util.Date;
+import javax.persistence.*;
+
+@Table(name = "ja_t_dust_site_data_info")
+public class DustSiteData {
+    @Id
+    private Integer id;
+
+    @Column(name = "mn_code")
+    private String mnCode;
+
+    @Column(name = "dust_value")
+    private Double dustValue;
+
+    @Column(name = "noise_value")
+    private Double noiseValue;
+
+    private Date lst;
+
+    private String quality;
+
+    private Integer grade;
+
+    private String flag;
+
+    /**
+     * @return id
+     */
+    public Integer getId() {
+        return id;
+    }
+
+    /**
+     * @param id
+     */
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    /**
+     * @return mn_code
+     */
+    public String getMnCode() {
+        return mnCode;
+    }
+
+    /**
+     * @param mnCode
+     */
+    public void setMnCode(String mnCode) {
+        this.mnCode = mnCode == null ? null : mnCode.trim();
+    }
+
+    /**
+     * @return dust_value
+     */
+    public Double getDustValue() {
+        return dustValue;
+    }
+
+    /**
+     * @param dustValue
+     */
+    public void setDustValue(Double dustValue) {
+        this.dustValue = dustValue;
+    }
+
+    /**
+     * @return noise_value
+     */
+    public Double getNoiseValue() {
+        return noiseValue;
+    }
+
+    /**
+     * @param noiseValue
+     */
+    public void setNoiseValue(Double noiseValue) {
+        this.noiseValue = noiseValue;
+    }
+
+    /**
+     * @return lst
+     */
+    public Date getLst() {
+        return lst;
+    }
+
+    /**
+     * @param lst
+     */
+    public void setLst(Date lst) {
+        this.lst = lst;
+    }
+
+    /**
+     * @return quality
+     */
+    public String getQuality() {
+        return quality;
+    }
+
+    /**
+     * @param quality
+     */
+    public void setQuality(String quality) {
+        this.quality = quality == null ? null : quality.trim();
+    }
+
+    /**
+     * @return grade
+     */
+    public Integer getGrade() {
+        return grade;
+    }
+
+    /**
+     * @param grade
+     */
+    public void setGrade(Integer grade) {
+        this.grade = grade;
+    }
+
+    /**
+     * @return flag
+     */
+    public String getFlag() {
+        return flag;
+    }
+
+    /**
+     * @param flag
+     */
+    public void setFlag(String flag) {
+        this.flag = flag == null ? null : flag.trim();
+    }
+}
\ No newline at end of file

--
Gitblit v1.9.3