no message
This commit is contained in:
parent
43e3d8cfea
commit
57db36e015
@ -1,9 +1,71 @@
|
||||
package com.ruoyi.web.controller.yada;
|
||||
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import com.ruoyi.system.serviceyada.IAustraliaMiddleEastService;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMethod;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 森林覆盖率
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 9:08
|
||||
*/
|
||||
public class AdahTestingController {
|
||||
@RestController
|
||||
@RequestMapping(value = "/business-service/api/Aorest", produces = "application/json;charset=UTF-8")
|
||||
public class AorestCoverageController {
|
||||
//@Autowired
|
||||
private IAustraliaMiddleEastService australiaMiddleEastService;
|
||||
|
||||
/**
|
||||
* 查询方法
|
||||
* @param response
|
||||
* @param request
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/SelectAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult SelectAustralia(HttpServletResponse response, HttpServletRequest request)
|
||||
{
|
||||
List<AustraliaMiddleEastVO> eastVOSList= australiaMiddleEastService.selectAustralia();
|
||||
return AjaxResult.success(eastVOSList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除方法
|
||||
* @param ID
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/DelAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult DelAustralia(@Param("ID") String ID)
|
||||
{
|
||||
int NUM = australiaMiddleEastService.DelAustralia(ID);
|
||||
if (NUM>0)
|
||||
{
|
||||
return AjaxResult.success();
|
||||
}
|
||||
return AjaxResult.error();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增方法
|
||||
* @param eastVOS
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/IntoAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult IntoAustralia(AustraliaMiddleEastVO eastVOS)
|
||||
{
|
||||
int NUM = australiaMiddleEastService.IntoAustralia(eastVOS);
|
||||
if (NUM>0)
|
||||
{
|
||||
return AjaxResult.success();
|
||||
}
|
||||
return AjaxResult.error();
|
||||
}
|
||||
}
|
||||
|
@ -18,7 +18,7 @@ import java.util.List;
|
||||
* @Date: 2022/5/11 9:08
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping(value = "/business-service/api/orderMng", produces = "application/json;charset=UTF-8")
|
||||
@RequestMapping(value = "/business-service/api/Australia", produces = "application/json;charset=UTF-8")
|
||||
public class AustraliaMiddleEastController
|
||||
{
|
||||
//@Autowired
|
||||
|
@ -1,15 +1,72 @@
|
||||
package com.ruoyi.web.controller.yada;
|
||||
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import com.ruoyi.system.serviceyada.IAustraliaMiddleEastService;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMethod;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
*全球生态环境监测
|
||||
*全球各类型占比
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 9:05
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/monitor/clobal")
|
||||
public class GlobalEcologyController {
|
||||
public class GlobalTypeController {
|
||||
//@Autowired
|
||||
private IAustraliaMiddleEastService australiaMiddleEastService;
|
||||
|
||||
/**
|
||||
* 查询方法
|
||||
* @param response
|
||||
* @param request
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/SelectAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult SelectAustralia(HttpServletResponse response, HttpServletRequest request)
|
||||
{
|
||||
List<AustraliaMiddleEastVO> eastVOSList= australiaMiddleEastService.selectAustralia();
|
||||
return AjaxResult.success(eastVOSList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除方法
|
||||
* @param ID
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/DelAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult DelAustralia(@Param("ID") String ID)
|
||||
{
|
||||
int NUM = australiaMiddleEastService.DelAustralia(ID);
|
||||
if (NUM>0)
|
||||
{
|
||||
return AjaxResult.success();
|
||||
}
|
||||
return AjaxResult.error();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增方法
|
||||
* @param eastVOS
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/IntoAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult IntoAustralia(AustraliaMiddleEastVO eastVOS)
|
||||
{
|
||||
int NUM = australiaMiddleEastService.IntoAustralia(eastVOS);
|
||||
if (NUM>0)
|
||||
{
|
||||
return AjaxResult.success();
|
||||
}
|
||||
return AjaxResult.error();
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,9 +1,71 @@
|
||||
package com.ruoyi.web.controller.yada;
|
||||
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import com.ruoyi.system.serviceyada.IAustraliaMiddleEastService;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMethod;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 森林监测
|
||||
* 海洋表面温度监测
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 9:13
|
||||
*/
|
||||
public class ForestController {
|
||||
@RestController
|
||||
@RequestMapping(value = "/business-service/api/Ocean", produces = "application/json;charset=UTF-8")
|
||||
public class OceanTemperatureController {
|
||||
//@Autowired
|
||||
private IAustraliaMiddleEastService australiaMiddleEastService;
|
||||
|
||||
/**
|
||||
* 查询方法
|
||||
* @param response
|
||||
* @param request
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/SelectAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult SelectAustralia(HttpServletResponse response, HttpServletRequest request)
|
||||
{
|
||||
List<AustraliaMiddleEastVO> eastVOSList= australiaMiddleEastService.selectAustralia();
|
||||
return AjaxResult.success(eastVOSList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除方法
|
||||
* @param ID
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/DelAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult DelAustralia(@Param("ID") String ID)
|
||||
{
|
||||
int NUM = australiaMiddleEastService.DelAustralia(ID);
|
||||
if (NUM>0)
|
||||
{
|
||||
return AjaxResult.success();
|
||||
}
|
||||
return AjaxResult.error();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增方法
|
||||
* @param eastVOS
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/IntoAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult IntoAustralia(AustraliaMiddleEastVO eastVOS)
|
||||
{
|
||||
int NUM = australiaMiddleEastService.IntoAustralia(eastVOS);
|
||||
if (NUM>0)
|
||||
{
|
||||
return AjaxResult.success();
|
||||
}
|
||||
return AjaxResult.error();
|
||||
}
|
||||
}
|
||||
|
@ -1,9 +1,71 @@
|
||||
package com.ruoyi.web.controller.yada;
|
||||
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import com.ruoyi.system.serviceyada.IAustraliaMiddleEastService;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMethod;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* ENSO影响监测
|
||||
* 区域生态系统
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 9:12
|
||||
*/
|
||||
public class ENSOController {
|
||||
@RestController
|
||||
@RequestMapping(value = "/business-service/api/Regional", produces = "application/json;charset=UTF-8")
|
||||
public class RegionalSystemController {
|
||||
//@Autowired
|
||||
private IAustraliaMiddleEastService australiaMiddleEastService;
|
||||
|
||||
/**
|
||||
* 查询方法
|
||||
* @param response
|
||||
* @param request
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/SelectAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult SelectAustralia(HttpServletResponse response, HttpServletRequest request)
|
||||
{
|
||||
List<AustraliaMiddleEastVO> eastVOSList= australiaMiddleEastService.selectAustralia();
|
||||
return AjaxResult.success(eastVOSList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除方法
|
||||
* @param ID
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/DelAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult DelAustralia(@Param("ID") String ID)
|
||||
{
|
||||
int NUM = australiaMiddleEastService.DelAustralia(ID);
|
||||
if (NUM>0)
|
||||
{
|
||||
return AjaxResult.success();
|
||||
}
|
||||
return AjaxResult.error();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增方法
|
||||
* @param eastVOS
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/IntoAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult IntoAustralia(AustraliaMiddleEastVO eastVOS)
|
||||
{
|
||||
int NUM = australiaMiddleEastService.IntoAustralia(eastVOS);
|
||||
if (NUM>0)
|
||||
{
|
||||
return AjaxResult.success();
|
||||
}
|
||||
return AjaxResult.error();
|
||||
}
|
||||
}
|
||||
|
@ -1,9 +1,71 @@
|
||||
package com.ruoyi.web.controller.yada;
|
||||
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import com.ruoyi.system.serviceyada.IAustraliaMiddleEastService;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMethod;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 城市监测
|
||||
* 中国城市监测
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 10:55
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping(value = "/business-service/api/Urban", produces = "application/json;charset=UTF-8")
|
||||
public class UrbanController {
|
||||
//@Autowired
|
||||
private IAustraliaMiddleEastService australiaMiddleEastService;
|
||||
|
||||
/**
|
||||
* 查询方法
|
||||
* @param response
|
||||
* @param request
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/SelectAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult SelectAustralia(HttpServletResponse response, HttpServletRequest request)
|
||||
{
|
||||
List<AustraliaMiddleEastVO> eastVOSList= australiaMiddleEastService.selectAustralia();
|
||||
return AjaxResult.success(eastVOSList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除方法
|
||||
* @param ID
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/DelAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult DelAustralia(@Param("ID") String ID)
|
||||
{
|
||||
int NUM = australiaMiddleEastService.DelAustralia(ID);
|
||||
if (NUM>0)
|
||||
{
|
||||
return AjaxResult.success();
|
||||
}
|
||||
return AjaxResult.error();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增方法
|
||||
* @param eastVOS
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/IntoAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult IntoAustralia(AustraliaMiddleEastVO eastVOS)
|
||||
{
|
||||
int NUM = australiaMiddleEastService.IntoAustralia(eastVOS);
|
||||
if (NUM>0)
|
||||
{
|
||||
return AjaxResult.success();
|
||||
}
|
||||
return AjaxResult.error();
|
||||
}
|
||||
}
|
||||
|
@ -1,9 +1,71 @@
|
||||
package com.ruoyi.web.controller.yada;
|
||||
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import com.ruoyi.system.serviceyada.IAustraliaMiddleEastService;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMethod;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 大气质量监测
|
||||
* 平均植被覆盖度和净初级生产力
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 10:56
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping(value = "/business-service/api/Vegetation", produces = "application/json;charset=UTF-8")
|
||||
public class VegetationCoverageController {
|
||||
//@Autowired
|
||||
private IAustraliaMiddleEastService australiaMiddleEastService;
|
||||
|
||||
/**
|
||||
* 查询方法
|
||||
* @param response
|
||||
* @param request
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/SelectAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult SelectAustralia(HttpServletResponse response, HttpServletRequest request)
|
||||
{
|
||||
List<AustraliaMiddleEastVO> eastVOSList= australiaMiddleEastService.selectAustralia();
|
||||
return AjaxResult.success(eastVOSList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除方法
|
||||
* @param ID
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/DelAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult DelAustralia(@Param("ID") String ID)
|
||||
{
|
||||
int NUM = australiaMiddleEastService.DelAustralia(ID);
|
||||
if (NUM>0)
|
||||
{
|
||||
return AjaxResult.success();
|
||||
}
|
||||
return AjaxResult.error();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增方法
|
||||
* @param eastVOS
|
||||
* @return
|
||||
*/
|
||||
@RequestMapping(value = "/IntoAustralia",method = {RequestMethod.POST})
|
||||
public AjaxResult IntoAustralia(AustraliaMiddleEastVO eastVOS)
|
||||
{
|
||||
int NUM = australiaMiddleEastService.IntoAustralia(eastVOS);
|
||||
if (NUM>0)
|
||||
{
|
||||
return AjaxResult.success();
|
||||
}
|
||||
return AjaxResult.error();
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,26 @@
|
||||
package com.ruoyi.system.domainyada;/**
|
||||
package com.ruoyi.system.domainyada;
|
||||
|
||||
/**
|
||||
* 森林覆盖率
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/20 14:06
|
||||
*/public class AorestCoverageVo {
|
||||
*/
|
||||
public class AorestCoverageVO {
|
||||
|
||||
private String id;
|
||||
|
||||
private String particularYear;
|
||||
|
||||
private String region;
|
||||
|
||||
private String regionEn;
|
||||
|
||||
private String protectedLands;
|
||||
|
||||
private String nonProtectedLands;
|
||||
|
||||
private String mountain;
|
||||
|
||||
private String nonMountain;
|
||||
|
||||
}
|
||||
|
@ -1,5 +1,9 @@
|
||||
package com.ruoyi.system.domainyada;/**
|
||||
package com.ruoyi.system.domainyada;
|
||||
|
||||
/**
|
||||
* 全球各类型占比
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/20 14:07
|
||||
*/public class GlobalTypeVO {
|
||||
*/
|
||||
public class GlobalTypeVO {
|
||||
}
|
||||
|
@ -1,5 +1,9 @@
|
||||
package com.ruoyi.system.domainyada;/**
|
||||
package com.ruoyi.system.domainyada;
|
||||
|
||||
/**+
|
||||
* 海面温度监测
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/20 14:08
|
||||
*/public class OceanTemperatureVO {
|
||||
*/
|
||||
public class OceanTemperatureVO {
|
||||
}
|
||||
|
@ -1,5 +1,10 @@
|
||||
package com.ruoyi.system.domainyada;/**
|
||||
package com.ruoyi.system.domainyada;
|
||||
|
||||
/**
|
||||
* 区域生态系统
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/20 14:09
|
||||
*/public class RegionalSystemVO {
|
||||
*/
|
||||
|
||||
public class RegionalSystemVO {
|
||||
}
|
||||
|
@ -1,5 +1,9 @@
|
||||
package com.ruoyi.system.domainyada;/**
|
||||
package com.ruoyi.system.domainyada;
|
||||
|
||||
/**
|
||||
* 平均植被覆盖度和净初级生产力
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/20 14:09
|
||||
*/public class VegetationCoverageVO {
|
||||
*/
|
||||
public class VegetationCoverageVO {
|
||||
}
|
||||
|
@ -1,8 +1,19 @@
|
||||
package com.ruoyi.system.mapperyada;
|
||||
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 15:17
|
||||
*/
|
||||
public interface AdahTestingMapper {
|
||||
public interface AorestCoverageMapper {
|
||||
|
||||
// List<AustraliaMiddleEastVO> selectAustralia();
|
||||
//
|
||||
// Integer DelAustralia(@Param("id") String id);
|
||||
//
|
||||
// Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
|
||||
}
|
||||
|
@ -1,8 +1,19 @@
|
||||
package com.ruoyi.system.mapperyada;
|
||||
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 15:18
|
||||
*/
|
||||
public interface GlobalEcologyMapper {
|
||||
public interface GlobalTypeMapper {
|
||||
|
||||
// List<AustraliaMiddleEastVO> selectAustralia();
|
||||
//
|
||||
// Integer DelAustralia(@Param("id") String id);
|
||||
//
|
||||
// Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
|
||||
}
|
||||
|
@ -1,8 +1,19 @@
|
||||
package com.ruoyi.system.mapperyada;
|
||||
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 15:18
|
||||
*/
|
||||
public interface ForestMapper {
|
||||
public interface OceanTemperatureMapper {
|
||||
|
||||
// List<AustraliaMiddleEastVO> selectAustralia();
|
||||
//
|
||||
// Integer DelAustralia(@Param("id") String id);
|
||||
//
|
||||
// Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
|
||||
}
|
||||
|
@ -1,8 +1,19 @@
|
||||
package com.ruoyi.system.mapperyada;
|
||||
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 15:18
|
||||
*/
|
||||
public interface ENSOMapper {
|
||||
public interface RegionalSystemMapper {
|
||||
|
||||
// List<AustraliaMiddleEastVO> selectAustralia();
|
||||
//
|
||||
// Integer DelAustralia(@Param("id") String id);
|
||||
//
|
||||
// Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
|
||||
}
|
||||
|
@ -1,8 +1,19 @@
|
||||
package com.ruoyi.system.mapperyada;
|
||||
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 15:17
|
||||
*/
|
||||
public interface AtmosphereMapper {
|
||||
public interface VegetationCoverageMapper {
|
||||
|
||||
// List<AustraliaMiddleEastVO> selectAustralia();
|
||||
//
|
||||
// Integer DelAustralia(@Param("id") String id);
|
||||
//
|
||||
// Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
|
||||
}
|
||||
|
@ -1,9 +1,20 @@
|
||||
package com.ruoyi.system.serviceyada;
|
||||
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 亚大综合监测
|
||||
* 森林覆盖率
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 11:32
|
||||
*/
|
||||
public interface IAdahTestingService {
|
||||
public interface IAorestCoverageService {
|
||||
|
||||
public List<AustraliaMiddleEastVO> selectAustralia();
|
||||
|
||||
public Integer DelAustralia(@Param("id") String id);
|
||||
|
||||
public Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
|
||||
}
|
||||
|
@ -1,9 +1,20 @@
|
||||
package com.ruoyi.system.serviceyada;
|
||||
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 全球生态环境监测
|
||||
* 全球各类型占比
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 11:37
|
||||
*/
|
||||
public interface IGlobalEcologyService {
|
||||
public interface IGlobalTypeService {
|
||||
|
||||
public List<AustraliaMiddleEastVO> selectAustralia();
|
||||
|
||||
public Integer DelAustralia(@Param("id") String id);
|
||||
|
||||
public Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
|
||||
}
|
||||
|
@ -1,9 +1,20 @@
|
||||
package com.ruoyi.system.serviceyada;
|
||||
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 森林监测
|
||||
* 海面表面温度监测
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 11:38
|
||||
*/
|
||||
public interface IForestService {
|
||||
public interface IOceanTemperatureService {
|
||||
|
||||
public List<AustraliaMiddleEastVO> selectAustralia();
|
||||
|
||||
public Integer DelAustralia(@Param("id") String id);
|
||||
|
||||
public Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
|
||||
}
|
||||
|
@ -1,9 +1,20 @@
|
||||
package com.ruoyi.system.serviceyada;
|
||||
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* ENSO影响监测
|
||||
* 区域生态系统
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 11:35
|
||||
*/
|
||||
public interface IENSOService {
|
||||
public interface IRegionalSystemService {
|
||||
|
||||
public List<AustraliaMiddleEastVO> selectAustralia();
|
||||
|
||||
public Integer DelAustralia(@Param("id") String id);
|
||||
|
||||
public Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
|
||||
}
|
||||
|
@ -1,9 +1,20 @@
|
||||
package com.ruoyi.system.serviceyada;
|
||||
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 大气质量监测
|
||||
* 平均植被覆盖度和净初级生产力
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 11:34
|
||||
*/
|
||||
public interface IAtmosphereService {
|
||||
public interface IVegetationCoverageService {
|
||||
|
||||
public List<AustraliaMiddleEastVO> selectAustralia();
|
||||
|
||||
public Integer DelAustralia(@Param("id") String id);
|
||||
|
||||
public Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
|
||||
}
|
||||
|
@ -1,11 +1,35 @@
|
||||
package com.ruoyi.system.serviceyada.impl;
|
||||
|
||||
import com.ruoyi.system.serviceyada.IAdahTestingService;
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import com.ruoyi.system.mapperyada.AustraliaMiddleEastMapper;
|
||||
import com.ruoyi.system.serviceyada.IAorestCoverageService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 亚大综合监测
|
||||
* 森林覆盖率
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 11:43
|
||||
*/
|
||||
public class AdahTestingServiceimpl implements IAdahTestingService {
|
||||
public class AorestCoverageServiceimpl implements IAorestCoverageService {
|
||||
@Autowired
|
||||
private AustraliaMiddleEastMapper australiaMiddleEastMapper;
|
||||
|
||||
@Override
|
||||
public List<AustraliaMiddleEastVO> selectAustralia()
|
||||
{
|
||||
return australiaMiddleEastMapper.selectAustralia();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer DelAustralia(String id) {
|
||||
return australiaMiddleEastMapper.DelAustralia(id);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer IntoAustralia(AustraliaMiddleEastVO eastVO) {
|
||||
return australiaMiddleEastMapper.IntoAustralia(eastVO);
|
||||
}
|
||||
}
|
||||
|
@ -1,11 +1,36 @@
|
||||
package com.ruoyi.system.serviceyada.impl;
|
||||
|
||||
import com.ruoyi.system.serviceyada.IGlobalEcologyService;
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import com.ruoyi.system.mapperyada.AustraliaMiddleEastMapper;
|
||||
import com.ruoyi.system.serviceyada.IGlobalTypeService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 全球生态环境监测
|
||||
* 全球各类型占比
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 11:47
|
||||
*/
|
||||
public class GlobalEcologyServiceimpl implements IGlobalEcologyService {
|
||||
public class GlobalTypeServiceimpl implements IGlobalTypeService {
|
||||
|
||||
@Autowired
|
||||
private AustraliaMiddleEastMapper australiaMiddleEastMapper;
|
||||
|
||||
@Override
|
||||
public List<AustraliaMiddleEastVO> selectAustralia()
|
||||
{
|
||||
return australiaMiddleEastMapper.selectAustralia();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer DelAustralia(String id) {
|
||||
return australiaMiddleEastMapper.DelAustralia(id);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer IntoAustralia(AustraliaMiddleEastVO eastVO) {
|
||||
return australiaMiddleEastMapper.IntoAustralia(eastVO);
|
||||
}
|
||||
}
|
||||
|
@ -1,11 +1,36 @@
|
||||
package com.ruoyi.system.serviceyada.impl;
|
||||
|
||||
import com.ruoyi.system.serviceyada.IForestService;
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import com.ruoyi.system.mapperyada.AustraliaMiddleEastMapper;
|
||||
import com.ruoyi.system.serviceyada.IOceanTemperatureService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 森林监测
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 11:47
|
||||
*/
|
||||
public class ForestServiceimpl implements IForestService {
|
||||
public class OceanTemperatureServiceimpl implements IOceanTemperatureService {
|
||||
|
||||
@Autowired
|
||||
private AustraliaMiddleEastMapper australiaMiddleEastMapper;
|
||||
|
||||
@Override
|
||||
public List<AustraliaMiddleEastVO> selectAustralia()
|
||||
{
|
||||
return australiaMiddleEastMapper.selectAustralia();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer DelAustralia(String id) {
|
||||
return australiaMiddleEastMapper.DelAustralia(id);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer IntoAustralia(AustraliaMiddleEastVO eastVO) {
|
||||
return australiaMiddleEastMapper.IntoAustralia(eastVO);
|
||||
}
|
||||
}
|
||||
|
@ -1,11 +1,36 @@
|
||||
package com.ruoyi.system.serviceyada.impl;
|
||||
|
||||
import com.ruoyi.system.serviceyada.IENSOService;
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import com.ruoyi.system.mapperyada.AustraliaMiddleEastMapper;
|
||||
import com.ruoyi.system.serviceyada.IRegionalSystemService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* ENSO影响监测
|
||||
* 区域生态系统
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 11:46
|
||||
*/
|
||||
public class ENSOServiceimpl implements IENSOService {
|
||||
public class RegionalSystemServiceimpl implements IRegionalSystemService {
|
||||
|
||||
@Autowired
|
||||
private AustraliaMiddleEastMapper australiaMiddleEastMapper;
|
||||
|
||||
@Override
|
||||
public List<AustraliaMiddleEastVO> selectAustralia()
|
||||
{
|
||||
return australiaMiddleEastMapper.selectAustralia();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer DelAustralia(String id) {
|
||||
return australiaMiddleEastMapper.DelAustralia(id);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer IntoAustralia(AustraliaMiddleEastVO eastVO) {
|
||||
return australiaMiddleEastMapper.IntoAustralia(eastVO);
|
||||
}
|
||||
}
|
||||
|
@ -8,4 +8,5 @@ import com.ruoyi.system.serviceyada.ISpecialReportService;
|
||||
* @Date: 2022/5/11 11:48
|
||||
*/
|
||||
public class SpecialReportServiceimpl implements ISpecialReportService {
|
||||
|
||||
}
|
||||
|
@ -1,11 +1,37 @@
|
||||
package com.ruoyi.system.serviceyada.impl;
|
||||
|
||||
import com.ruoyi.system.serviceyada.IAtmosphereService;
|
||||
import com.ruoyi.system.domainyada.AustraliaMiddleEastVO;
|
||||
import com.ruoyi.system.mapperyada.AustraliaMiddleEastMapper;
|
||||
import com.ruoyi.system.serviceyada.IVegetationCoverageService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 大气质量监测
|
||||
* 平均植被覆盖度和净初级生产力
|
||||
* @Author: JinSheng Song
|
||||
* @Date: 2022/5/11 11:45
|
||||
*/
|
||||
public class AtmosphereServiceimpl implements IAtmosphereService {
|
||||
public class VegetationCoverageServiceimpl implements IVegetationCoverageService {
|
||||
|
||||
|
||||
@Autowired
|
||||
private AustraliaMiddleEastMapper australiaMiddleEastMapper;
|
||||
|
||||
@Override
|
||||
public List<AustraliaMiddleEastVO> selectAustralia()
|
||||
{
|
||||
return australiaMiddleEastMapper.selectAustralia();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer DelAustralia(String id) {
|
||||
return australiaMiddleEastMapper.DelAustralia(id);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer IntoAustralia(AustraliaMiddleEastVO eastVO) {
|
||||
return australiaMiddleEastMapper.IntoAustralia(eastVO);
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.ruoyi.system.mapperyada.AdahTestingMapper">
|
||||
<mapper namespace="com.ruoyi.system.mapperyada.AorestCoverageMapper">
|
||||
|
||||
|
||||
</mapper>
|
@ -2,6 +2,6 @@
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.ruoyi.system.mapperyada.GlobalEcologyMapper">
|
||||
<mapper namespace="com.ruoyi.system.mapperyada.GlobalTypeMapper">
|
||||
|
||||
</mapper>
|
@ -2,7 +2,7 @@
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.ruoyi.system.mapperyada.ForestMapper">
|
||||
<mapper namespace="com.ruoyi.system.mapperyada.OceanTemperatureMapper">
|
||||
|
||||
|
||||
</mapper>
|
@ -2,7 +2,7 @@
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.ruoyi.system.mapperyada.ENSOMapper">
|
||||
<mapper namespace="com.ruoyi.system.mapperyada.RegionalSystemMapper">
|
||||
|
||||
|
||||
</mapper>
|
@ -2,7 +2,7 @@
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.ruoyi.system.mapperyada.AtmosphereMapper">
|
||||
<mapper namespace="com.ruoyi.system.mapperyada.VegetationCoverageMapper">
|
||||
|
||||
|
||||
</mapper>
|
Loading…
Reference in New Issue
Block a user