From e6cc379fbef57277568ee667ec07a508b3dcc479 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期四, 29 八月 2024 17:35:35 +0800 Subject: [PATCH] 1. 新增NO监测因子 2. 新增第三方数据接口数据获取相关模块 --- src/main/kotlin/com/flightfeather/uav/domain/entity/CompanyDevice.java | 120 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 120 insertions(+), 0 deletions(-) diff --git a/src/main/kotlin/com/flightfeather/uav/domain/entity/CompanyDevice.java b/src/main/kotlin/com/flightfeather/uav/domain/entity/CompanyDevice.java index 6c26ca5..7be13e7 100644 --- a/src/main/kotlin/com/flightfeather/uav/domain/entity/CompanyDevice.java +++ b/src/main/kotlin/com/flightfeather/uav/domain/entity/CompanyDevice.java @@ -15,6 +15,36 @@ private String cdDeviceCode; /** + * 璁惧绫诲瀷锛�0锛氫骇绾匡紱1锛氬噣鍖� + */ + @Column(name = "CD_Type") + private Integer cdType; + + /** + * 璁惧绫诲瀷鍚嶇О + */ + @Column(name = "CD_Type_Name") + private String cdTypeName; + + /** + * 璁惧鐢垫祦鐣岄檺鍊硷紝閲囩敤鈥�;鈥濆垎闅斾笉鍚岀晫闄� + */ + @Column(name = "CD_Limits") + private String cdLimits; + + /** + * 璁惧鐢垫祦涓嶅悓鐣岄檺涓嬪搴旂殑鐘舵�佺紪鍙� + */ + @Column(name = "CD_Status") + private String cdStatus; + + /** + * 璁惧鐢垫祦涓嶅悓鐣岄檺涓嬪搴旂殑鐘舵�佸悕绉� + */ + @Column(name = "CD_Status_Name") + private String cdStatusName; + + /** * @return CD_Id */ public Integer getCdId() { @@ -55,4 +85,94 @@ public void setCdDeviceCode(String cdDeviceCode) { this.cdDeviceCode = cdDeviceCode == null ? null : cdDeviceCode.trim(); } + + /** + * 鑾峰彇璁惧绫诲瀷锛�0锛氫骇绾匡紱1锛氬噣鍖� + * + * @return CD_Type - 璁惧绫诲瀷锛�0锛氫骇绾匡紱1锛氬噣鍖� + */ + public Integer getCdType() { + return cdType; + } + + /** + * 璁剧疆璁惧绫诲瀷锛�0锛氫骇绾匡紱1锛氬噣鍖� + * + * @param cdType 璁惧绫诲瀷锛�0锛氫骇绾匡紱1锛氬噣鍖� + */ + public void setCdType(Integer cdType) { + this.cdType = cdType; + } + + /** + * 鑾峰彇璁惧绫诲瀷鍚嶇О + * + * @return CD_Type_Name - 璁惧绫诲瀷鍚嶇О + */ + public String getCdTypeName() { + return cdTypeName; + } + + /** + * 璁剧疆璁惧绫诲瀷鍚嶇О + * + * @param cdTypeName 璁惧绫诲瀷鍚嶇О + */ + public void setCdTypeName(String cdTypeName) { + this.cdTypeName = cdTypeName == null ? null : cdTypeName.trim(); + } + + /** + * 鑾峰彇璁惧鐢垫祦鐣岄檺鍊硷紝閲囩敤鈥�;鈥濆垎闅斾笉鍚岀晫闄� + * + * @return CD_Limits - 璁惧鐢垫祦鐣岄檺鍊硷紝閲囩敤鈥�;鈥濆垎闅斾笉鍚岀晫闄� + */ + public String getCdLimits() { + return cdLimits; + } + + /** + * 璁剧疆璁惧鐢垫祦鐣岄檺鍊硷紝閲囩敤鈥�;鈥濆垎闅斾笉鍚岀晫闄� + * + * @param cdLimits 璁惧鐢垫祦鐣岄檺鍊硷紝閲囩敤鈥�;鈥濆垎闅斾笉鍚岀晫闄� + */ + public void setCdLimits(String cdLimits) { + this.cdLimits = cdLimits == null ? null : cdLimits.trim(); + } + + /** + * 鑾峰彇璁惧鐢垫祦涓嶅悓鐣岄檺涓嬪搴旂殑鐘舵�佺紪鍙� + * + * @return CD_Status - 璁惧鐢垫祦涓嶅悓鐣岄檺涓嬪搴旂殑鐘舵�佺紪鍙� + */ + public String getCdStatus() { + return cdStatus; + } + + /** + * 璁剧疆璁惧鐢垫祦涓嶅悓鐣岄檺涓嬪搴旂殑鐘舵�佺紪鍙� + * + * @param cdStatus 璁惧鐢垫祦涓嶅悓鐣岄檺涓嬪搴旂殑鐘舵�佺紪鍙� + */ + public void setCdStatus(String cdStatus) { + this.cdStatus = cdStatus == null ? null : cdStatus.trim(); + } + + /** + * 鑾峰彇璁惧鐢垫祦涓嶅悓鐣岄檺涓嬪搴旂殑鐘舵�佸悕绉� + * + * @return CD_Status_Name - 璁惧鐢垫祦涓嶅悓鐣岄檺涓嬪搴旂殑鐘舵�佸悕绉� + */ + public String getCdStatusName() { + return cdStatusName; + } + + /** + * 璁剧疆璁惧鐢垫祦涓嶅悓鐣岄檺涓嬪搴旂殑鐘舵�佸悕绉� + * + * @param cdStatusName 璁惧鐢垫祦涓嶅悓鐣岄檺涓嬪搴旂殑鐘舵�佸悕绉� + */ + public void setCdStatusName(String cdStatusName) { + this.cdStatusName = cdStatusName == null ? null : cdStatusName.trim(); + } } \ No newline at end of file -- Gitblit v1.9.3