修改disaster_id为vordm_id

This commit is contained in:
zhang-962464 2023-03-31 10:52:25 +08:00
parent 7cb7144184
commit 706b65b340
17 changed files with 83 additions and 33 deletions

View File

@ -20,10 +20,10 @@ public class DownloadRecord implements Serializable {
@TableId
private Integer id;
/**
* 灾害id
*/
private Integer diasterId;
/**
* 灾害id,审批通过后生成
*/
private String vordmId;
/**
* 大的数据源1为新闻资讯2为社交媒体3实体数据

View File

@ -54,9 +54,9 @@ public class EntityData implements Serializable {
private Date uploadTime;
/**
* 灾害id
* vordm-id
*/
private Integer disasterId;
private String vordmId;
/**
* 可视化可视化标志0-不可可视化1-表示可以可视化

View File

@ -36,10 +36,10 @@ public class Hotspot implements Serializable {
*/
private Integer frequency;
/**
* 灾害id
*/
private Integer disasterId;
/**
* 灾害id,审批通过后生成
*/
private String vordmId;
/**
* 数据条目创建时间

View File

@ -25,10 +25,10 @@ public class MapServer implements Serializable {
*/
private String name;
/**
* 灾害id
*/
private Integer disasterId;
/**
* 灾害id,审批通过后生成
*/
private String vordmId;
/**
* 缩放纬度

View File

@ -36,10 +36,10 @@ public class PictureInfo implements Serializable {
*/
private String type;
/**
* 灾害id
*/
private Integer disasterId;
/**
* 灾害id,审批通过后生成
*/
private String vordmId;
/**
* 创建时间

View File

@ -35,10 +35,10 @@ public class ResponseInfo implements Serializable {
*/
private Integer managerId;
/**
* 灾害id
*/
private Integer disasterId;
/**
* 灾害id,审批通过后生成
*/
private String vordmId;
@TableField(exist = false)
private static final long serialVersionUID = 1L;

View File

@ -37,10 +37,10 @@ public class Websites implements Serializable {
*/
private String provider;
/**
* 灾害id
*/
private Integer disasterId;
/**
* 灾害id,审批通过后生成
*/
private String vordmId;
/**
* 数据条目创建时间

View File

@ -0,0 +1,42 @@
package com.kening.vordm.controller;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.kening.vordm.entity.News;
import com.kening.vordm.service.NewsService;
import lombok.RequiredArgsConstructor;
import org.springblade.core.tool.api.R;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
@RestController
@RequestMapping("/api")
@RequiredArgsConstructor
public class TestController {
private final NewsService newsService;
/**
*
* @param id
* @return
*/
@GetMapping
public R<List<News>> getA(Long id) {
LambdaQueryWrapper<News> qrq = new LambdaQueryWrapper<>();
qrq.eq(News::getId, id);
List<News> list = newsService.list(qrq);
return R.data(list);
}
@PostMapping
public R<String> getB() {
return R.data("seccess");
}
}

View File

@ -6,7 +6,7 @@
<resultMap id="BaseResultMap" type="com.kening.vordm.entity.DownloadRecord">
<id property="id" column="id" jdbcType="INTEGER"/>
<result property="diasterId" column="diaster_id" jdbcType="INTEGER"/>
<result property="vordmId" column="vordmId" jdbcType="INTEGER"/>
<result property="bigType" column="big_type" jdbcType="INTEGER"/>
<result property="smallType" column="small_type" jdbcType="VARCHAR"/>
<result property="count" column="count" jdbcType="INTEGER"/>

View File

@ -12,7 +12,7 @@
<result property="link" column="link" jdbcType="VARCHAR"/>
<result property="remark" column="remark" jdbcType="VARCHAR"/>
<result property="uploadTime" column="upload_time" jdbcType="TIMESTAMP"/>
<result property="disasterId" column="disaster_id" jdbcType="INTEGER"/>
<result property="vordmId" column="disaster_id" jdbcType="INTEGER"/>
<result property="visualFlag" column="visual_flag" jdbcType="INTEGER"/>
<result property="visualLon" column="visual_lon" jdbcType="DOUBLE"/>
<result property="visualLat" column="visual_lat" jdbcType="DOUBLE"/>

View File

@ -9,7 +9,7 @@
<result property="areaCn" column="area_cn" jdbcType="VARCHAR"/>
<result property="areaEn" column="area_en" jdbcType="VARCHAR"/>
<result property="frequency" column="frequency" jdbcType="INTEGER"/>
<result property="disasterId" column="disaster_id" jdbcType="INTEGER"/>
<result property="vordmId" column="vordmId" jdbcType="INTEGER"/>
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
<result property="status" column="status" jdbcType="SMALLINT"/>
<result property="managerId" column="manager_id" jdbcType="INTEGER"/>

View File

@ -4,6 +4,8 @@ package com.kening.vordm.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.kening.vordm.entity.MapServer;
import java.util.List;
/**
* @author G1393
* @description 针对表map_server(上传基础地理数据并发布到geoserver上记录geoserver的存储信息)的数据库操作Mapper
@ -13,4 +15,6 @@ import com.kening.vordm.entity.MapServer;
public interface MapServerMapper extends BaseMapper<MapServer> {
List<MapServer> getMapService(Long id);
}

View File

@ -7,7 +7,7 @@
<resultMap id="BaseResultMap" type="com.kening.vordm.entity.MapServer">
<id property="id" column="id" jdbcType="BIGINT"/>
<result property="name" column="name" jdbcType="VARCHAR"/>
<result property="disasterId" column="disaster_id" jdbcType="INTEGER"/>
<result property="vordmId" column="vordmId" jdbcType="INTEGER"/>
<result property="lat" column="lat" jdbcType="DOUBLE"/>
<result property="lon" column="lon" jdbcType="DOUBLE"/>
</resultMap>
@ -16,4 +16,7 @@
id,name,disaster_id,
lat,lon
</sql>
<select id="getMapService" resultType="com.kening.vordm.entity.MapServer">
</select>
</mapper>

View File

@ -9,7 +9,7 @@
<result property="link" column="link" jdbcType="VARCHAR"/>
<result property="size" column="size" jdbcType="INTEGER"/>
<result property="type" column="type" jdbcType="VARCHAR"/>
<result property="disasterId" column="disaster_id" jdbcType="INTEGER"/>
<result property="vordmId" column="vordmId" jdbcType="INTEGER"/>
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
<result property="isMain" column="is_main" jdbcType="SMALLINT"/>
<result property="uploader" column="uploader" jdbcType="INTEGER"/>

View File

@ -9,7 +9,7 @@
<result property="promoteId" column="promote_id" jdbcType="INTEGER"/>
<result property="uploaderId" column="uploader_id" jdbcType="INTEGER"/>
<result property="managerId" column="manager_id" jdbcType="INTEGER"/>
<result property="disasterId" column="disaster_id" jdbcType="INTEGER"/>
<result property="vordmId" column="vordmId" jdbcType="INTEGER"/>
</resultMap>
<sql id="Base_Column_List">

View File

@ -9,7 +9,7 @@
<result property="title" column="title" jdbcType="VARCHAR"/>
<result property="link" column="link" jdbcType="VARCHAR"/>
<result property="provider" column="provider" jdbcType="VARCHAR"/>
<result property="disasterId" column="disaster_id" jdbcType="INTEGER"/>
<result property="vordmId" column="vordmId" jdbcType="INTEGER"/>
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
<result property="websiteId" column="website_id" jdbcType="VARCHAR"/>
<result property="uploader" column="uploader" jdbcType="INTEGER"/>

View File

@ -10,4 +10,5 @@ import com.kening.vordm.entity.News;
*/
public interface NewsService extends IService<News> {
}