glj-代码提交

This commit is contained in:
glj 2023-05-10 18:51:25 +08:00
parent 4a7df57e29
commit abded014f0
3 changed files with 6 additions and 1 deletions

View File

@ -17,4 +17,8 @@ public class HotspotArea {
* 频次 * 频次
*/ */
private Integer value; private Integer value;
/**
* 名称
*/
private String nameNew;
} }

View File

@ -49,7 +49,7 @@ public class Websites implements Serializable {
/** /**
* 网站灾害对应id * 网站灾害对应id
*/ */
private Long websiteId; private String websiteId;
/** /**
* 上传的管理人员 * 上传的管理人员

View File

@ -25,6 +25,7 @@
<select id="hotspotCount" resultType="com.kening.vordm.entity.HotspotArea"> <select id="hotspotCount" resultType="com.kening.vordm.entity.HotspotArea">
select select
concat(area_cn,"(",area_en,")") as name, concat(area_cn,"(",area_en,")") as name,
area_en AS nameNew,
frequency as value frequency as value
from hotspot from hotspot
<where> <where>