冲突解决-glj

This commit is contained in:
glj 2023-04-26 18:07:47 +08:00
commit 6704340b46
3 changed files with 8 additions and 1 deletions

View File

@ -71,4 +71,8 @@ public class CrawlInfo implements Serializable {
@TableField(exist = false)
private static final long serialVersionUID = 1L;
private String startDate;
private String endDate;
}

View File

@ -25,4 +25,6 @@ public class DataUpload extends EntityData{
private Long disasterId;
private String vordmId;
private String geometry;
}

View File

@ -23,7 +23,8 @@
bdb.dict_value as disasterType,
di.id as disasterId,
di.disaster_time as disasterTime,
di.disaster_country as disasterCountry
di.disaster_country as disasterCountry,
di.geometry
from disaster_info di
left join blade_dict_biz bdb on di.disaster_type = dict_key
</select>