Compare commits

...

2 Commits

Author SHA1 Message Date
songjinsheng
57db36e015 no message 2022-05-20 14:19:34 +08:00
songjinsheng
43e3d8cfea 修改控制器 2022-05-20 14:19:25 +08:00
54 changed files with 871 additions and 205 deletions

View File

@ -1,9 +0,0 @@
package com.ruoyi.web.controller.yada;
/**
* 亚大综合监测
* @Author: JinSheng Song
* @Date: 2022/5/11 9:08
*/
public class AdahTestingController {
}

View File

@ -0,0 +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
*/
@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();
}
}

View File

@ -1,9 +0,0 @@
package com.ruoyi.web.controller.yada;
/**
* 大气质量监测
* @Author: JinSheng Song
* @Date: 2022/5/11 10:56
*/
public class AtmosphereController {
}

View File

@ -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

View File

@ -1,9 +0,0 @@
package com.ruoyi.web.controller.yada;
/**
* ENSO影响监测
* @Author: JinSheng Song
* @Date: 2022/5/11 9:12
*/
public class ENSOController {
}

View File

@ -1,9 +0,0 @@
package com.ruoyi.web.controller.yada;
/**
* 森林监测
* @Author: JinSheng Song
* @Date: 2022/5/11 9:13
*/
public class ForestController {
}

View File

@ -1,15 +0,0 @@
package com.ruoyi.web.controller.yada;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
*全球生态环境监测
* @Author: JinSheng Song
* @Date: 2022/5/11 9:05
*/
@RestController
@RequestMapping("/monitor/clobal")
public class GlobalEcologyController {
}

View File

@ -0,0 +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 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();
}
}

View File

@ -0,0 +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
*/
@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();
}
}

View File

@ -0,0 +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:12
*/
@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();
}
}

View File

@ -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();
}
}

View File

@ -0,0 +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();
}
}

View File

@ -0,0 +1,26 @@
package com.ruoyi.system.domainyada;
/**
* 森林覆盖率
* @Author: JinSheng Song
* @Date: 2022/5/20 14:06
*/
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;
}

View File

@ -0,0 +1,9 @@
package com.ruoyi.system.domainyada;
/**
* 全球各类型占比
* @Author: JinSheng Song
* @Date: 2022/5/20 14:07
*/
public class GlobalTypeVO {
}

View File

@ -0,0 +1,9 @@
package com.ruoyi.system.domainyada;
/**+
* 海面温度监测
* @Author: JinSheng Song
* @Date: 2022/5/20 14:08
*/
public class OceanTemperatureVO {
}

View File

@ -0,0 +1,10 @@
package com.ruoyi.system.domainyada;
/**
* 区域生态系统
* @Author: JinSheng Song
* @Date: 2022/5/20 14:09
*/
public class RegionalSystemVO {
}

View File

@ -0,0 +1,9 @@
package com.ruoyi.system.domainyada;
/**
* 平均植被覆盖度和净初级生产力
* @Author: JinSheng Song
* @Date: 2022/5/20 14:09
*/
public class VegetationCoverageVO {
}

View File

@ -1,8 +0,0 @@
package com.ruoyi.system.mapperyada;
/**
* @Author: JinSheng Song
* @Date: 2022/5/11 15:17
*/
public interface AdahTestingMapper {
}

View File

@ -0,0 +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 AorestCoverageMapper {
// List<AustraliaMiddleEastVO> selectAustralia();
//
// Integer DelAustralia(@Param("id") String id);
//
// Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
}

View File

@ -1,8 +0,0 @@
package com.ruoyi.system.mapperyada;
/**
* @Author: JinSheng Song
* @Date: 2022/5/11 15:17
*/
public interface AtmosphereMapper {
}

View File

@ -1,8 +0,0 @@
package com.ruoyi.system.mapperyada;
/**
* @Author: JinSheng Song
* @Date: 2022/5/11 15:18
*/
public interface ENSOMapper {
}

View File

@ -1,8 +0,0 @@
package com.ruoyi.system.mapperyada;
/**
* @Author: JinSheng Song
* @Date: 2022/5/11 15:18
*/
public interface ForestMapper {
}

View File

@ -1,8 +0,0 @@
package com.ruoyi.system.mapperyada;
/**
* @Author: JinSheng Song
* @Date: 2022/5/11 15:18
*/
public interface GlobalEcologyMapper {
}

View File

@ -0,0 +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 GlobalTypeMapper {
// List<AustraliaMiddleEastVO> selectAustralia();
//
// Integer DelAustralia(@Param("id") String id);
//
// Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
}

View File

@ -0,0 +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 OceanTemperatureMapper {
// List<AustraliaMiddleEastVO> selectAustralia();
//
// Integer DelAustralia(@Param("id") String id);
//
// Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
}

View File

@ -0,0 +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 RegionalSystemMapper {
// List<AustraliaMiddleEastVO> selectAustralia();
//
// Integer DelAustralia(@Param("id") String id);
//
// Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
}

View File

@ -0,0 +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 VegetationCoverageMapper {
// List<AustraliaMiddleEastVO> selectAustralia();
//
// Integer DelAustralia(@Param("id") String id);
//
// Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
}

View File

@ -1,9 +0,0 @@
package com.ruoyi.system.serviceyada;
/**
* 亚大综合监测
* @Author: JinSheng Song
* @Date: 2022/5/11 11:32
*/
public interface IAdahTestingService {
}

View File

@ -0,0 +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 IAorestCoverageService {
public List<AustraliaMiddleEastVO> selectAustralia();
public Integer DelAustralia(@Param("id") String id);
public Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
}

View File

@ -1,9 +0,0 @@
package com.ruoyi.system.serviceyada;
/**
* 大气质量监测
* @Author: JinSheng Song
* @Date: 2022/5/11 11:34
*/
public interface IAtmosphereService {
}

View File

@ -1,9 +0,0 @@
package com.ruoyi.system.serviceyada;
/**
* ENSO影响监测
* @Author: JinSheng Song
* @Date: 2022/5/11 11:35
*/
public interface IENSOService {
}

View File

@ -1,9 +0,0 @@
package com.ruoyi.system.serviceyada;
/**
* 森林监测
* @Author: JinSheng Song
* @Date: 2022/5/11 11:38
*/
public interface IForestService {
}

View File

@ -1,9 +0,0 @@
package com.ruoyi.system.serviceyada;
/**
* 全球生态环境监测
* @Author: JinSheng Song
* @Date: 2022/5/11 11:37
*/
public interface IGlobalEcologyService {
}

View File

@ -0,0 +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 IGlobalTypeService {
public List<AustraliaMiddleEastVO> selectAustralia();
public Integer DelAustralia(@Param("id") String id);
public Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
}

View File

@ -0,0 +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 IOceanTemperatureService {
public List<AustraliaMiddleEastVO> selectAustralia();
public Integer DelAustralia(@Param("id") String id);
public Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
}

View File

@ -0,0 +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:35
*/
public interface IRegionalSystemService {
public List<AustraliaMiddleEastVO> selectAustralia();
public Integer DelAustralia(@Param("id") String id);
public Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
}

View File

@ -0,0 +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 IVegetationCoverageService {
public List<AustraliaMiddleEastVO> selectAustralia();
public Integer DelAustralia(@Param("id") String id);
public Integer IntoAustralia(AustraliaMiddleEastVO eastVO);
}

View File

@ -1,11 +0,0 @@
package com.ruoyi.system.serviceyada.impl;
import com.ruoyi.system.serviceyada.IAdahTestingService;
/**
* 亚大综合监测
* @Author: JinSheng Song
* @Date: 2022/5/11 11:43
*/
public class AdahTestingServiceimpl implements IAdahTestingService {
}

View File

@ -0,0 +1,35 @@
package com.ruoyi.system.serviceyada.impl;
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 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);
}
}

View File

@ -1,11 +0,0 @@
package com.ruoyi.system.serviceyada.impl;
import com.ruoyi.system.serviceyada.IAtmosphereService;
/**
* 大气质量监测
* @Author: JinSheng Song
* @Date: 2022/5/11 11:45
*/
public class AtmosphereServiceimpl implements IAtmosphereService {
}

View File

@ -1,11 +0,0 @@
package com.ruoyi.system.serviceyada.impl;
import com.ruoyi.system.serviceyada.IENSOService;
/**
* ENSO影响监测
* @Author: JinSheng Song
* @Date: 2022/5/11 11:46
*/
public class ENSOServiceimpl implements IENSOService {
}

View File

@ -1,11 +0,0 @@
package com.ruoyi.system.serviceyada.impl;
import com.ruoyi.system.serviceyada.IForestService;
/**
* 森林监测
* @Author: JinSheng Song
* @Date: 2022/5/11 11:47
*/
public class ForestServiceimpl implements IForestService {
}

View File

@ -1,11 +0,0 @@
package com.ruoyi.system.serviceyada.impl;
import com.ruoyi.system.serviceyada.IGlobalEcologyService;
/**
* 全球生态环境监测
* @Author: JinSheng Song
* @Date: 2022/5/11 11:47
*/
public class GlobalEcologyServiceimpl implements IGlobalEcologyService {
}

View File

@ -0,0 +1,36 @@
package com.ruoyi.system.serviceyada.impl;
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 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);
}
}

View File

@ -0,0 +1,36 @@
package com.ruoyi.system.serviceyada.impl;
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 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);
}
}

View File

@ -0,0 +1,36 @@
package com.ruoyi.system.serviceyada.impl;
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;
/**
* 区域生态系统
* @Author: JinSheng Song
* @Date: 2022/5/11 11:46
*/
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);
}
}

View File

@ -8,4 +8,5 @@ import com.ruoyi.system.serviceyada.ISpecialReportService;
* @Date: 2022/5/11 11:48
*/
public class SpecialReportServiceimpl implements ISpecialReportService {
}

View File

@ -0,0 +1,37 @@
package com.ruoyi.system.serviceyada.impl;
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 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);
}
}

View File

@ -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.AorestCoverageMapper">
</mapper>

View File

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!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>

View File

@ -2,7 +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.AtmosphereMapper">
<mapper namespace="com.ruoyi.system.mapperyada.GlobalTypeMapper">
</mapper>

View File

@ -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>

View File

@ -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.RegionalSystemMapper">
</mapper>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.system.mapperyada.VegetationCoverageMapper">
</mapper>